Minor cosmetic fixes

This commit is contained in:
Matias Pando 2014-08-28 10:00:18 -03:00
parent acde51cf87
commit 20c78ce130
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ var getCommitHash = function() {
//exec git command to get the hash of the current commit
//git rev-parse HEAD
var hash = shell.exec('git rev-parse HEAD').output.trim().substr(0,10);
var hash = shell.exec('git rev-parse HEAD',{silent:true}).output.trim().substr(0,7);
return hash;
}

View File

@ -1,6 +1,6 @@
<div ng-controller="VersionController">
<small>v{{version}}</small>
<small>#{{commitHash}}</small>
<small ng-if="networkName=='testnet'">[ {{networkName}} ]</small>
<small>{{commitHash}}</small>
</div>