Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
PR grumbles (#2930)
Browse files Browse the repository at this point in the history
  • Loading branch information
ngotchac committed Oct 31, 2016
1 parent 99af8f8 commit 3d14d0f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions js/src/dapps/registry/Accounts/accounts.js
Original file line number Diff line number Diff line change
@@ -36,6 +36,8 @@ export default class Accounts extends Component {
render () {
const { all, selected } = this.props;

const origin = { horizontal: 'right', vertical: 'top' };

const accountsButton = (
<IconButton className={ styles.button }>
{ selected
@@ -50,8 +52,8 @@ export default class Accounts extends Component {
onChange={ this.onAccountSelect }
iconButtonElement={ accountsButton }

anchorOrigin={ { horizontal: 'right', vertical: 'top' } }
targetOrigin={ { horizontal: 'right', vertical: 'top' } }
anchorOrigin={ origin }
targetOrigin={ origin }
>
{ Object.values(all).map(this.renderAccount) }
</IconMenu>

0 comments on commit 3d14d0f

Please sign in to comment.