UX: don't show 'personal' if not logged in

This commit is contained in:
Pieter Vander Vennet 2025-01-02 01:51:47 +01:00
parent aaa112d075
commit e4ea213ff4

View file

@ -90,7 +90,7 @@
}
let officialSearched: Store<MinimalThemeInformation[]> = filtered(
new ImmutableStore(officialThemes)
osmConnection.isLoggedIn.map(loggedIn => loggedIn ? officialThemes : officialThemes.filter(th => th.id !== "personal"))
)
let hiddenSearched: Store<MinimalThemeInformation[]> = filtered(visitedHiddenThemes)
let customSearched: Store<MinimalThemeInformation[]> = filtered(customThemes)
@ -103,6 +103,9 @@
}
})
/**
* Opens the first search candidate
*/
function applySearch() {
const didRedirect = SearchUtils.applySpecialSearch(search.data)
if (didRedirect) {