Support Electron app version

This commit is contained in:
Mo Bitar
2019-11-12 11:38:16 -06:00
parent c0261cab2c
commit ab1abfb42e
3 changed files with 3 additions and 3 deletions

View File

@@ -13,7 +13,7 @@ class AccountMenu {
$timeout, $compile, archiveManager, privilegesManager, appVersion) {
'ngInject';
$scope.appVersion = "v" + appVersion;
$scope.appVersion = "v" + (window.electronAppVersion || appVersion);
$scope.formData = {mergeLocal: true, ephemeral: false};
$scope.user = authManager.user;