diff --git a/src/components/Sidebar.vue b/src/components/Sidebar.vue index db7d3a3f..3b099cc1 100644 --- a/src/components/Sidebar.vue +++ b/src/components/Sidebar.vue @@ -145,8 +145,9 @@
dev mode
@@ -206,11 +207,13 @@ export default defineComponent({ groups: [], viewShortcuts: false, activeGroup: null, + showDevMode: false, } as { companyName: string; groups: SidebarConfig; viewShortcuts: boolean; activeGroup: null | SidebarRoot; + showDevMode: boolean; }; }, computed: { @@ -239,6 +242,8 @@ export default defineComponent({ } }); this.shortcuts?.set(COMPONENT_NAME, ['F1'], () => this.openDocumentation()); + + this.showDevMode = this.fyo.store.isDevelopment; }, unmounted() { this.shortcuts?.delete(COMPONENT_NAME);