Expand All Folders

How to expand all folders in the #syncthing UI.

Open the JS terminal and run the following code:

index = 0; while(document.getElementById(`folder-${index}`)) { document.getElementById(`folder-${index}`).classList.add("in"); document.getElementById(`folder-${index}`).style = ""; index++; }

It goes through every folder block and does the following:

  1. Adds the in class
    • This opens the dropdown
  2. Removes the style property
    • This removes the style: height=0px; style that prevents other blocks from being pushed down

This change is temporary and when the UI refreshes the folder blocks will return to their closed state.