You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I feel a little silly asking for help, but I just can't seem to figure out how to add more items to the bubble menu in Novel for my Next.js app. The default menu looks like this:
And I would like it to look something like this:
Here is what I have in my code:
import{Editor}from"novel";import{Extension}from"@tiptap/core";constNovelEditor=()=>{return(<Editorextensions={[Extension.create({name: "customMenu",menu: [{icon: "🤖",label: "Chat with AI",},],}),]}/>);};
Obviously, this menu option doesn't do anything. But I can't even get it to show up. What am I doing wrong? Any help you all can offer would be greatly appreciated. Thanks!
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I feel a little silly asking for help, but I just can't seem to figure out how to add more items to the bubble menu in Novel for my Next.js app. The default menu looks like this:
And I would like it to look something like this:
Here is what I have in my code:
Obviously, this menu option doesn't do anything. But I can't even get it to show up. What am I doing wrong? Any help you all can offer would be greatly appreciated. Thanks!
Beta Was this translation helpful? Give feedback.
All reactions