Hide Back button from Scheduler Editor (HTML/Vanilla)

Hi everyone, is there a way to hide the back button through the component configuration? I don’t want the user to see the full configuration list—just to edit the current one.

Hello @Fabricio Let me ask the Scheduler team and will get back to you :slight_smile:

Hello @Fabricio you can they can use the CSS part attr for the button to hide it (display: none).

The part is editor__footer-cancel.

If you go to the final example (11) you can actually see how’s that achieved:

Hi @Blag, thanks for the reply. I had been thinking about using this trick with CSS.

To anyone who needs to hide this button

nylas-scheduler-editor::part(editor__footer-cancel) {
  display: none;
}
1 Like