make address green in dashboard

This commit is contained in:
Iuri Matias 2016-09-24 22:41:55 -04:00
parent 7f31566684
commit 2eef8b46ae
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ ContractsManager.prototype.contractsState = function() {
data.push([
className.green,
(contract.deployedAddress || '...'.green),
(contract.deployedAddress || '...').green,
((contract.deployedAddress !== undefined) ? "\t\tDeployed".green : "\t\tPending".magenta)
]);
}