PS-91 bug/mas hide update option (#1446)

* PS-91 - hide update option if MAS build

* fix isMacAppStore
This commit is contained in:
Jake Fink 2022-03-24 15:55:06 -04:00 committed by GitHub
parent 6555312034
commit d2a7012d3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

2
jslib

@ -1 +1 @@
Subproject commit 9950fb42a15bad434a4b404419ff4a87af67a27b
Subproject commit 5070a783a7730bcf7a0e4bf726c2e41d1b41cf2d

View File

@ -42,7 +42,7 @@ export class AboutMenu implements IMenubarMenu {
return {
id: "checkForUpdates",
label: this.localize("checkForUpdates"),
visible: !isWindowsStore() && !isSnapStore() && isMacAppStore() == undefined,
visible: !isWindowsStore() && !isSnapStore() && !isMacAppStore(),
click: () => this.checkForUpdate(),
};
}

View File

@ -40,7 +40,7 @@ export class FirstMenu {
id: "checkForUpdates",
label: this.localize("checkForUpdates"),
click: (menuItem) => this.checkForUpdate(menuItem),
visible: isMacAppStore() == undefined && !isWindowsStore() && !isSnapStore(),
visible: !isMacAppStore() && !isWindowsStore() && !isSnapStore(),
};
}