Is there a way to disable the ability for a user to delete notes created in the note component? (e.g. remove the little red "x" next to the note)
Hi @rogamorris!
Kind of. I have a very hacky, semi-functional workaround for you that would hide the delete button for everyone—Custom CSS.
You can add it in the three dot menu > Scripts and styles > CSS.
The first selector is for the Note component in the editor and the second selector is for the Note component in preview. Let me know how this works for you!
#retool-widget-note1 svg, ._retool-NoteWidget svg {
display: none;
}
2 Likes
Yep, that worked, thank you!
2 Likes