Fix actions modal on mobile (fixes #441)
This commit is contained in:
parent
06fc278e4c
commit
240833c023
|
@ -14,8 +14,13 @@ const mapDispatchToProps = (dispatch, { status, items }) => ({
|
|||
onOpen(id, onItemClick, dropdownPlacement) {
|
||||
dispatch(isUserTouching() ? openModal('ACTIONS', {
|
||||
status,
|
||||
actions: items,
|
||||
onClick: onItemClick,
|
||||
actions: items.map(
|
||||
(item, i) => item ? {
|
||||
...item,
|
||||
name: `${item.text}-${i}`,
|
||||
onClick: (e) => { return onItemClick(i, e) },
|
||||
} : null
|
||||
),
|
||||
}) : openDropdownMenu(id, dropdownPlacement));
|
||||
},
|
||||
onClose(id) {
|
||||
|
|
|
@ -22,7 +22,6 @@ export default class ActionsModal extends ImmutablePureComponent {
|
|||
meta: PropTypes.node,
|
||||
name: PropTypes.string,
|
||||
on: PropTypes.bool,
|
||||
onClick: PropTypes.func,
|
||||
onPassiveClick: PropTypes.func,
|
||||
text: PropTypes.node,
|
||||
})),
|
||||
|
|
Loading…
Reference in New Issue