beneficiaries fix

This commit is contained in:
feruz 2020-01-27 07:48:59 +02:00
parent 7f3ad510c7
commit 3a99197cf8

View File

@ -76,7 +76,7 @@ class UpvoteContainer extends PureComponent {
if (beneficiaries) { if (beneficiaries) {
beneficiary.forEach(key => { beneficiary.forEach(key => {
beneficiaries.push( beneficiaries.push(
get(key, 'account') + ': ' + (parseFloat(get(key, 'weight')) / 100).toFixed(2) + '%', `\n ${get(key, 'account')}: ${(parseFloat(get(key, 'weight')) / 100).toFixed(2)}%`,
); );
}); });
} }