We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b3991c commit e56bad9Copy full SHA for e56bad9
src/components/menu/menu-toggle.ts
@@ -138,10 +138,11 @@ export class MenuToggle {
138
*/
139
get isHidden() {
140
const menu = this._menu.get(this.menuToggle);
141
- if (!menu || !menu._canOpen()) {
142
- return true;
143
- }
144
if (this._inNavbar && this._viewCtrl) {
+ if (!menu || !menu._canOpen()) {
+ return true;
+ }
145
+
146
if (this._viewCtrl.isFirst()) {
147
// this is the first view, so it should always show
148
return false;
0 commit comments