fix confirmed labe

This commit is contained in:
mmv 2019-07-10 18:44:21 +04:00
parent 9a999fd2ea
commit 9dfdd4f4b1
1 changed files with 4 additions and 1 deletions

View File

@ -83,7 +83,10 @@ const OwnersColumn = ({
displayButtonRow = false
}
const confirmedLabel = `Confirmed [${tx.confirmations.size}/${threshold}]`
let confirmedLabel = `Confirmed [${tx.confirmations.size}/${threshold}]`
if (tx.executionTxHash) {
confirmedLabel = `Confirmed [${tx.confirmations.size}]`
}
const unconfirmedLabel = `Unconfirmed [${ownersUnconfirmed.size}]`
return (