Skip to content

Commit

Permalink
fix menu overflow/scrollbar
Browse files Browse the repository at this point in the history
  • Loading branch information
matthesrieke committed Feb 1, 2023
1 parent 8cf0b4d commit d6027f0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/components/sidenav/sidenav.directive.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

</div>
</md-toolbar>
<md-content>
<md-content style="overflow:hidden">
<md-list>
<md-list-item ng-repeat="item in menuItems" ng-click="selectItem(item)" ui-sref="{{item.sref}}" ui-sref-active="md-primary">
<div id="comming_soon_light" ng-if="item.commingSoon">
Expand Down
4 changes: 2 additions & 2 deletions app/config/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
templateUrl: "app/components/login/login.html",
controller: "LoginCtrl",
reloadOnSearch:false,
authenticate: false // to view this page login not needed
authenticate: true // to view this page login not needed
})
.state("tou", { // this is for the TOU path
url: "/tou",
Expand All @@ -27,7 +27,7 @@
url: "/dashboard",
templateUrl: "app/components/dashboard/dashboard.html",
controller: "DashboardCtrl",
authenticate: true
authenticate: false
})
.state("chart", {
url: "/dashboard/track/:trackid",
Expand Down

0 comments on commit d6027f0

Please sign in to comment.