fix version value

This commit is contained in:
Javier 2016-12-27 17:05:02 -03:00
commit 4a79ecbfb3
4 changed files with 9 additions and 10 deletions

View file

@ -4,7 +4,7 @@ angular.module('copayApp.controllers').controller('preferencesAbout',
function($scope, $window, appConfigService, gettextCatalog, externalLinkService) {
$scope.title = gettextCatalog.getString('About') + ' ' + appConfigService.nameCase;
$scope.version = appConfigService.version;
$scope.version = $window.version;
$scope.commitHash = $window.commitHash;
$scope.openExternalLink = function() {