Favourites: tweaking overview; fix upload of properties

This commit is contained in:
Pieter Vander Vennet 2023-12-03 04:20:56 +01:00
parent 59090fdb39
commit a350410520
6 changed files with 49 additions and 25 deletions

View file

@ -109,7 +109,7 @@ export default class FavouritesFeatureSource extends StaticFeatureSource {
if (!key.startsWith(FavouritesFeatureSource.prefix + id)) {
continue
}
const propertyName = key.substring(minLength)
const propertyName = key.substring(minLength).replaceAll("__", ":")
properties[propertyName] = prefs[key]
}
return properties