Skip to content

Commit

Permalink
Fix DropDown in multisig onboarding (#313)
Browse files Browse the repository at this point in the history
  • Loading branch information
sohkai authored Jul 17, 2018
1 parent 8fb9538 commit bf6e184
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,9 @@ class ConfigureMultisigAddressesContent extends React.PureComponent {
onSignerChange,
onNeededSignaturesChange,
} = this.props
const neededSignaturesItems = fields.signers.map((signer, i) => i + 1)
const neededSignaturesItems = fields.signers.map((signer, i) =>
String(i + 1)
)
return (
<Content>
<Title>Token project with multisig</Title>
Expand Down

0 comments on commit bf6e184

Please sign in to comment.