Skip to content

Commit

Permalink
Fixed issue on copy/cut/paste in editor and save (#28315)
Browse files Browse the repository at this point in the history
Co-authored-by: KevinDavilaDotCMS <[email protected]>
  • Loading branch information
KevinDavilaDotCMS and kevindaviladev authored Apr 22, 2024
1 parent 78b1866 commit 06309e2
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,10 @@ export class InlineEditService {
ed.destroy(false);
}
});

editor.on('cut copy paste', () => {
editor.setDirty(true);
});
}

/**
Expand Down

0 comments on commit 06309e2

Please sign in to comment.