I am using the following code to display a nav-bar and a nav-bar-view display content for the app. Randomly (when I access links from the side menu) the ‘hamburger’ icon keeps disappearing from the nav-bar and I have to click on the address bar and press enter for the page to refresh the page for it show up again. This is happening in browser (using ionic serve) and on device as well. Can someone tell me why is this happening? I don’t have a codepen as it’s happening very randomly and I don’t have a set of steps to reproduce it.
<ion-side-menu-content drag-content="false">
<ion-nav-bar class="bar-stable">
<ion-nav-buttons side="left">
<button class="button button-icon button-clear ion-navicon" menu-toggle="left">
</button>
</ion-nav-buttons>
</ion-nav-bar>
<ion-nav-view name="appContent">
</ion-nav-view>
</ion-side-menu-content>