goodteditor-ui 1.0.103 → 1.0.104
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
|
|
48
48
|
<script>
|
|
49
49
|
import { Editor, EditorContent } from '@tiptap/vue-2';
|
|
50
|
+
import { cloneDeep } from 'lodash';
|
|
50
51
|
|
|
51
52
|
import { debounce } from '../utils/Helpers';
|
|
52
53
|
import { resolveExtensions } from './extensions';
|
|
@@ -186,14 +187,14 @@ export default {
|
|
|
186
187
|
|
|
187
188
|
this.editor = new Editor({
|
|
188
189
|
content: value,
|
|
189
|
-
extensions: resolveExtensions({
|
|
190
|
+
extensions: cloneDeep(resolveExtensions({
|
|
190
191
|
...(bubbleMenu && {
|
|
191
192
|
bubbleMenu: {
|
|
192
193
|
element: $refs.menu,
|
|
193
194
|
...bubbleMenu
|
|
194
195
|
}
|
|
195
196
|
})
|
|
196
|
-
}),
|
|
197
|
+
})),
|
|
197
198
|
autofocus,
|
|
198
199
|
editorProps: {
|
|
199
200
|
attributes: {
|