We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b418a1 commit 6cd2533Copy full SHA for 6cd2533
resources/js/components/fieldtypes/bard/BardFieldtype.vue
@@ -823,7 +823,13 @@ export default {
823
editable: !this.readOnly,
824
enableInputRules: this.config.enable_input_rules,
825
enablePasteRules: this.config.enable_paste_rules,
826
- editorProps: { attributes: { class: 'bard-content' } },
+ editorProps: {
827
+ attributes: { class: 'bard-content' },
828
+ handlePaste: () => {
829
+ this.debounceNextUpdate = false;
830
+ return false;
831
+ },
832
833
onDrop: () => this.debounceNextUpdate = false,
834
onFocus: () => {
835
this.hasBeenFocused = true;
0 commit comments