Skip to content

Commit c8f2da2

Browse files
committed
fix(Card update inline): Ability to update card data inline using widget
1 parent f57e286 commit c8f2da2

File tree

5 files changed

+4
-3
lines changed

5 files changed

+4
-3
lines changed

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v10.16.0
1+
v10.22.0

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cache:
55
notifications:
66
email: true
77
node_js:
8-
- '10.16.0'
8+
- '10.22.0'
99
after_success:
1010
- npm run semantic-release
1111
branches:

src/actions/LaneActions.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ export const updateCard = createAction('UPDATE_CARD')
55
export const removeCard = createAction('REMOVE_CARD')
66
export const moveCardAcrossLanes = createAction('MOVE_CARD')
77
export const updateCards = createAction('UPDATE_CARDS')
8-
export const updateCard = createAction('UPDATE_CARD')
98
export const updateLanes = createAction('UPDATE_LANES')
109
export const updateLane = createAction('UPDATE_LANE')
1110
export const paginateLane = createAction('PAGINATE_LANE')

src/controllers/BoardContainer.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ class BoardContainer extends Component {
122122
style,
123123
onDataChange,
124124
onCardAdd,
125+
onCardUpdate,
125126
onCardClick,
126127
onBeforeCardDelete,
127128
onCardDelete,

src/controllers/Lane.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,7 @@ class Lane extends Component {
256256
onCardDelete,
257257
onLaneDelete,
258258
onLaneUpdate,
259+
onCardUpdate,
259260
onCardMoveAcrossLanes,
260261
...otherProps
261262
} = this.props

0 commit comments

Comments
 (0)