From 2eef8b46aeb1125ee932e3e7e36367cd3725c4bd Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Sat, 24 Sep 2016 22:41:55 -0400 Subject: [PATCH] make address green in dashboard --- lib/contracts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/contracts.js b/lib/contracts.js index f66dfcdc9..05183d612 100644 --- a/lib/contracts.js +++ b/lib/contracts.js @@ -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) ]); }