forked from MapComplete/MapComplete
Fix tests
This commit is contained in:
parent
4085bbc1ac
commit
e6dab1a83f
4 changed files with 9 additions and 2 deletions
|
@ -23,7 +23,7 @@ export class AvailableRasterLayers {
|
|||
const eli = await Utils.downloadJson<{ features: EditorLayerIndex }>(
|
||||
"./assets/data/editor-layer-index.json"
|
||||
)
|
||||
this._editorLayerIndex = eli.features.filter((l) => l.properties.id !== "Bing")
|
||||
this._editorLayerIndex = eli.features?.filter((l) => l.properties.id !== "Bing") ?? []
|
||||
this._editorLayerIndexStore.set(this._editorLayerIndex)
|
||||
return this._editorLayerIndex
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue