Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion web/eslint.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ export default defineConfigWithVueTs(
// Temporary ignores until rules can be fixed
"vue/require-v-for-key": "off",
"vue/valid-v-for": "off",
"vue/return-in-computed-property": "off",
"vue/no-use-v-if-with-v-for": "off",
},
},
Expand Down
2 changes: 2 additions & 0 deletions web/src/components/map/MapTooltip.vue
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ const clickedFeatureSourceType = computed(() => {
if (feature.source.includes(".vector")) return "vector";
if (feature.source.includes(".bounds")) return "raster";
}
return undefined;
});

const rasterValue = computed(() => {
Expand All @@ -84,6 +85,7 @@ const rasterValue = computed(() => {
}
}
}
return undefined;
});

function zoomToFeature() {
Expand Down
1 change: 1 addition & 0 deletions web/src/components/sidebars/NetworksPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ const networkState = computed(() => {
if (networkStore.currentNetwork) {
return networkStore.networkStates[networkStore.currentNetwork.id];
}
return undefined;
});

const tab = ref();
Expand Down