mirror of
https://github.com/plankanban/planka.git
synced 2025-12-26 09:15:01 +03:00
@@ -41,6 +41,7 @@ const mapDispatchToProps = (dispatch) =>
|
||||
onLabelFromFilterRemove: entryActions.removeLabelFromFilterInCurrentBoard,
|
||||
onLabelCreate: entryActions.createLabelInCurrentBoard,
|
||||
onLabelUpdate: entryActions.updateLabel,
|
||||
onLabelMove: entryActions.moveLabel,
|
||||
onLabelDelete: entryActions.deleteLabel,
|
||||
},
|
||||
dispatch,
|
||||
|
||||
@@ -70,6 +70,7 @@ const mapDispatchToProps = (dispatch, { id }) =>
|
||||
onLabelRemove: (labelId) => entryActions.removeLabelFromCard(labelId, id),
|
||||
onLabelCreate: (data) => entryActions.createLabelInCurrentBoard(data),
|
||||
onLabelUpdate: (labelId, data) => entryActions.updateLabel(labelId, data),
|
||||
onLabelMove: (labelId, index) => entryActions.moveLabel(labelId, index),
|
||||
onLabelDelete: (labelId) => entryActions.deleteLabel(labelId),
|
||||
},
|
||||
dispatch,
|
||||
|
||||
@@ -86,6 +86,7 @@ const mapDispatchToProps = (dispatch) =>
|
||||
onLabelRemove: entryActions.removeLabelFromCurrentCard,
|
||||
onLabelCreate: entryActions.createLabelInCurrentBoard,
|
||||
onLabelUpdate: entryActions.updateLabel,
|
||||
onLabelMove: entryActions.moveLabel,
|
||||
onLabelDelete: entryActions.deleteLabel,
|
||||
onTaskCreate: entryActions.createTaskInCurrentCard,
|
||||
onTaskUpdate: entryActions.updateTask,
|
||||
|
||||
Reference in New Issue
Block a user