Skip to content

Commit

Permalink
fix(lint): missing semi
Browse files Browse the repository at this point in the history
  • Loading branch information
kittaakos committed Feb 5, 2025
1 parent d3079a9 commit 380a155
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ export class ApplicationShellWithToolbarOverride extends ApplicationShell {
const isShellMaximized = this.mainPanel.hasClass(MAXIMIZED_CLASS) || this.bottomPanel.hasClass(MAXIMIZED_CLASS);
if (doShowToolbarFromPreference && !isShellMaximized) {
this.toolbar.show();
return true
return true;
}
this.toolbar.hide();
return false
return false;
}

protected override createLayout(): Layout {
Expand Down

0 comments on commit 380a155

Please sign in to comment.