We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The text was updated successfully, but these errors were encountered:
typing a space still not working well, it gets stuck in suggestion mode after typing an @ and there is no way to get out of it. Might need to update tiptap to latest version and explore a solution like this ueberdosis/tiptap#214 (comment) (https://codesandbox.io/p/sandbox/tiptap-mention-ddfcm?file=%2Fsrc%2Fcomponents%2FsuggestionPlugin.js) which is unfortunately in Vue so would have to be translated to React
Sorry, something went wrong.
ooh someone just added to the tiptap issue above this solution that may work for us:
onUpdate(props) { if (renderer) { renderer.updateProps(props) } if (!popup || !props.clientRect) return const matches = props?.query?.match(/([\s]+)/g) const spacesCount = matches?.length || 0 if (spacesCount > 1 && props.items === null) { popup?.[0]?.hide() return } popup[0].setProps({ getReferenceClientRect: props.clientRect }) },
tibetsprague
KevinTriplett
No branches or pull requests
Screen.Recording.2023-02-15.at.4.00.01.PM.mov
The text was updated successfully, but these errors were encountered: