fix: remove nav buttons from initial selection on setting page (#2803)
parent
14162f8bcb
commit
9c916e0932
|
@ -25,7 +25,7 @@ const defaultSelectedNavButtonNames = computed<NavButtonName[]>(() =>
|
||||||
: ['explore', 'local', 'federated', 'moreMenu'],
|
: ['explore', 'local', 'federated', 'moreMenu'],
|
||||||
)
|
)
|
||||||
const navButtonNamesSetting = useLocalStorage<NavButtonName[]>(STORAGE_KEY_BOTTOM_NAV_BUTTONS, defaultSelectedNavButtonNames.value)
|
const navButtonNamesSetting = useLocalStorage<NavButtonName[]>(STORAGE_KEY_BOTTOM_NAV_BUTTONS, defaultSelectedNavButtonNames.value)
|
||||||
const selectedNavButtonNames = ref(navButtonNamesSetting.value)
|
const selectedNavButtonNames = ref<NavButtonName[]>([])
|
||||||
|
|
||||||
const selectedNavButtons = computed<NavButton[]>(() =>
|
const selectedNavButtons = computed<NavButton[]>(() =>
|
||||||
selectedNavButtonNames.value.map(name =>
|
selectedNavButtonNames.value.map(name =>
|
||||||
|
|
Loading…
Reference in New Issue