diff options
Diffstat (limited to 'apps/theming/src/components/UserAppMenuSection.vue')
-rw-r--r-- | apps/theming/src/components/UserAppMenuSection.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/src/components/UserAppMenuSection.vue b/apps/theming/src/components/UserAppMenuSection.vue index 56abd357274..6459c245824 100644 --- a/apps/theming/src/components/UserAppMenuSection.vue +++ b/apps/theming/src/components/UserAppMenuSection.vue @@ -81,7 +81,7 @@ export default defineComponent({ */ const initialAppOrder = loadState<INavigationEntry[]>('core', 'apps') .filter(({ type }) => type === 'link') - .map((app) => ({ ...app, label: app.name, default: app.default && app.app === enforcedDefaultApp })) + .map((app) => ({ ...app, label: app.name, default: app.default && app.id === enforcedDefaultApp })) /** * Check if a custom app order is used or the default is shown |