temporary fix for #129

This commit is contained in:
vcoppe
2024-10-02 12:49:08 +02:00
parent 48eaa344e4
commit acf0750ccb
4 changed files with 20 additions and 5 deletions

View File

@@ -130,7 +130,9 @@
});
currentBasemap.subscribe((value) => {
// Updates coming from the database, or from the user swapping basemaps
selectedBasemap.set(value);
if (value !== get(selectedBasemap)) {
selectedBasemap.set(value);
}
});
let open = false;