Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
seicke committed Oct 30, 2024
1 parent af4e81b commit 46c4ae0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions aas-web-ui/src/components/AppNavigation/AppNavigation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,7 @@
mainMenu: false, // Variable to show the Main Menu
mobileMenu: false, // Variable to show the Mobile Menu
dashboardAvailable: false, // Dashboard Availability
endpointConfigAvailable: true,
drawerVisibility: true, // Variable to show the AAS List Drawer
};
},
Expand Down Expand Up @@ -317,6 +318,10 @@
return this.envStore.getEnvLogoPath;
},
getEndpointConfigAvailable() {
return this.envStore.getEndpointConfigAvailable;
},
dashboardServicePath() {
return this.envStore.getEnvDashboardServicePath;
},
Expand Down Expand Up @@ -371,6 +376,7 @@
mounted() {
this.isDashboardAvailable();
this.endpointConfigAvailable = this.getEndpointConfigAvailable;
// check the local storage for a saved theme preference
let theme = localStorage.getItem('theme');
if (theme) {
Expand Down

0 comments on commit 46c4ae0

Please sign in to comment.