mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-08 01:49:58 +00:00
fix(ui): hashtags not working when composing (#2686)
This commit is contained in:
parent
5a9546ec0a
commit
7703565c75
1 changed files with 3 additions and 0 deletions
|
@ -63,6 +63,9 @@ export function useTiptap(options: UseTiptapOptions) {
|
|||
Mention
|
||||
.extend({ name: 'hashtag' })
|
||||
.configure({
|
||||
renderHTML({ options, node }) {
|
||||
return ['span', { 'data-type': 'hashtag', 'data-id': node.attrs.id }, `${options.suggestion.char}${node.attrs.label ?? node.attrs.id}`]
|
||||
},
|
||||
suggestion: TiptapHashtagSuggestion,
|
||||
}),
|
||||
Mention
|
||||
|
|
Loading…
Reference in a new issue