Not able to edit Table of Contents

I’m facing dificulties editing a table of contents. I’ve created a page some time ago and added a TOC on the top, but now I don’t see any option to edit it or even to delete the TOC… Am I missing something or is this a bug?

I’m running SilverBullet locally on a container and I’ve followed the install instructions.

Hi, welcome! There is limited customisation for the TOC but what is possible is here: Library/Core/Widget/Table of Contents - really just how many headers need to be on the page before it’s shown.
If you want to disable it, you need to add frontmatter to your page:

---
pageDecoration:
  disableTOC: true
---

Is it possible to modify it to show all headers and not just the first 10? I need a very big TOC, but the rest is cut off and I need to scroll to get the rest.

if you mean the widget at the top of the screen, it maxes out at 500px, but you can adjust this with space style

#sb-main .cm-editor .sb-lua-top-widget .content {
  max-width: 1000px !important;
}