Updated some popover positions to be majorly on screen

• Updated:
- some popover positions to be majorly on screen
This commit is contained in:
mgabdev 2020-07-24 18:57:49 -05:00
parent 504f04c7be
commit 9fe2837539
4 changed files with 4 additions and 4 deletions

View File

@ -39,7 +39,7 @@ const mapDispatchToProps = (dispatch, { intl }) => ({
targetRef,
group,
isAdmin,
position: 'top',
position: 'left',
}))
},

View File

@ -31,7 +31,7 @@ const mapDispatchToProps = (dispatch) => ({
onOpenNavSettingsPopover(targetRef) {
dispatch(openPopover(POPOVER_NAV_SETTINGS, {
targetRef,
position: 'top',
position: 'left-end',
}))
}
})

View File

@ -74,7 +74,7 @@ class ProfileHeader extends ImmutablePureComponent {
openProfileOptionsPopover({
account,
targetRef: this.openMoreNode,
position: 'top',
position: 'left',
})
}

View File

@ -37,7 +37,7 @@ const mapDispatchToProps = (dispatch) => ({
dispatch(openPopover('STATUS_OPTIONS', {
targetRef,
status,
position: 'top',
position: 'left-start',
}))
},
})