Fix account dropdown not opening due to regression from #12377 (#12430)

master
Eugen Rochko 4 years ago committed by GitHub
parent 5f0cba2561
commit 8dfc45f757
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      app/javascript/mastodon/containers/dropdown_menu_container.js

@ -14,7 +14,9 @@ const mapStateToProps = state => ({
const mapDispatchToProps = (dispatch, { status, items }) => ({
onOpen(id, onItemClick, dropdownPlacement, keyboard) {
dispatch(fetchRelationships([status.getIn(['account', 'id'])]));
if (status) {
dispatch(fetchRelationships([status.getIn(['account', 'id'])]));
}
dispatch(isUserTouching() ? openModal('ACTIONS', {
status,

Loading…
Cancel
Save