Skip to content
Snippets Groups Projects
Commit 47f6bcc6 authored by Tim's avatar Tim
Browse files

typo: authors -> author

parent da4e54ef
No related branches found
No related tags found
No related merge requests found
...@@ -168,7 +168,7 @@ class Voting extends React.Component { ...@@ -168,7 +168,7 @@ class Voting extends React.Component {
} }
if(total_author_payout > 0) { if(total_author_payout > 0) {
payoutItems.push({value: 'Past Payouts $' + formatDecimal(total_author_payout + total_curator_payout).join('')}); payoutItems.push({value: 'Past Payouts $' + formatDecimal(total_author_payout + total_curator_payout).join('')});
payoutItems.push({value: ' - Authors: $' + formatDecimal(total_author_payout).join('')}); payoutItems.push({value: ' - Author: $' + formatDecimal(total_author_payout).join('')});
payoutItems.push({value: ' - Curators: $' + formatDecimal(total_curator_payout).join('')}); payoutItems.push({value: ' - Curators: $' + formatDecimal(total_curator_payout).join('')});
} }
const payoutEl = <DropdownMenu el="div" items={payoutItems}> const payoutEl = <DropdownMenu el="div" items={payoutItems}>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment