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 207443f commit 08590c7Copy full SHA for 08590c7
extension/chrome/settings/index.ts
@@ -69,7 +69,8 @@ View.run(
69
}
70
71
public render = async () => {
72
- $('#status-row #status_version').text(`v:${VERSION}`);
+ const isDevMode = !('update_url' in chrome.runtime.getManifest());
73
+ $('#status-row #status_version').text(`v:${VERSION}${isDevMode ? '-dev' : ''}`);
74
for (const webmailLName of await Env.webmails()) {
75
$('.signin_button.' + webmailLName).css('display', 'inline-block');
76
0 commit comments