diff --git a/src/components/Assistant.vue b/src/components/Assistant.vue index 2dbfeea89ad..33ae5574679 100644 --- a/src/components/Assistant.vue +++ b/src/components/Assistant.vue @@ -5,6 +5,7 @@ + ref="contentWrapper"> + + + + + + diff --git a/src/extensions/RichText.js b/src/extensions/RichText.js index cf71f42c71b..60472f20687 100644 --- a/src/extensions/RichText.js +++ b/src/extensions/RichText.js @@ -35,7 +35,6 @@ import Mention from './../extensions/Mention.js' import Search from './../extensions/Search.js' import OrderedList from './../nodes/OrderedList.js' import Paragraph from './../nodes/Paragraph.js' -import Placeholder from '@tiptap/extension-placeholder' import Preview from './../nodes/Preview.js' import Table from './../nodes/Table.js' import TaskItem from './../nodes/TaskItem.js' @@ -112,11 +111,6 @@ export default Extension.create({ relativePath: this.options.relativePath, }), LinkBubble, - this.options.editing - ? Placeholder.configure({ - placeholder: t('text', 'Start writing, or try \'/\' to add, \'@\' to mention…'), - }) - : null, TrailingNode, ] const additionalExtensionNames = this.options.extensions.map(e => e.name)