Skip to content

Commit

Permalink
FOUR-19784: Clipboard Pasted Successfully message isn't displayed
Browse files Browse the repository at this point in the history
  • Loading branch information
Rodrigo Quelca committed Oct 25, 2024
1 parent e96ce66 commit b7b532c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/mixins/Clipboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,9 @@ export default {
// replace uuids in clipboard content
clipboardContent.forEach(this.updateUuids);
page.items.splice(index, 1, ...clipboardContent);
if (clipboardContent.length) {
window.ProcessMaker.alert(this.$t("Clipboard Pasted Succesfully"), "success");
}
}
if (item.items) {
replaceInPage(item);
Expand Down

0 comments on commit b7b532c

Please sign in to comment.