Skip to content

Commit

Permalink
Merge pull request #4768 from akolson/fix-question-count-on-copy
Browse files Browse the repository at this point in the history
Fixes count of resources/questions on copy
  • Loading branch information
akolson authored Sep 27, 2024
2 parents 6f6daf2 + 9c28eb9 commit 0ac2e9b
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
});
}
Expand Down

0 comments on commit 0ac2e9b

Please sign in to comment.