1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 16:23:44 +00:00

[Account Switching] Fix menus (#1232)

* Fix enabled/disabling menu items with locked state

* Fix the empty about menu (title)

Moved the items to the help menu
This commit is contained in:
Daniel James Smith
2022-01-13 14:29:49 +01:00
committed by GitHub
parent b6117d6801
commit 7818ffc2fb
7 changed files with 43 additions and 43 deletions

View File

@@ -10,12 +10,8 @@ import { IMenubarMenu } from "./menubar";
export class AboutMenu implements IMenubarMenu {
readonly id: string = "about";
get visible(): boolean {
return !isMac();
}
get label(): string {
return this.localize("about");
return "";
}
get items(): MenuItemConstructorOptions[] {