Skip to content
This repository was archived by the owner on Jun 24, 2025. It is now read-only.

Commit ff89ab6

Browse files
committed
fix(text): auto-completion not working
1 parent 8262303 commit ff89ab6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

apps/client/src/widgets/type_widgets/editable_text.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -301,8 +301,9 @@ export default class EditableTextTypeWidget extends AbstractTextTypeWidget {
301301
async createEditor() {
302302
await this.watchdog.create(this.$editor[0], {
303303
placeholder: t("editable_text.placeholder"),
304-
//@ts-ignore TODO: FIX TYPES
305-
mention: mentionSetup,
304+
mention: {
305+
feeds: mentionSetup,
306+
},
306307
codeBlock: {
307308
languages: buildListOfLanguages()
308309
},

0 commit comments

Comments
 (0)