diff --git a/contentcuration/contentcuration/frontend/channelEdit/vuex/contentNode/actions.js b/contentcuration/contentcuration/frontend/channelEdit/vuex/contentNode/actions.js index f883725b71..e5711b9b20 100644 --- a/contentcuration/contentcuration/frontend/channelEdit/vuex/contentNode/actions.js +++ b/contentcuration/contentcuration/frontend/channelEdit/vuex/contentNode/actions.js @@ -548,6 +548,7 @@ export function copyContentNode( return ContentNode.copy(id, target, position, excluded_descendants, sourceNode).then(node => { context.commit('ADD_CONTENTNODE', node); context.commit('ADD_INHERITING_NODE', node); + setContentNodesCount(context, [node]); return node; }); }