CyberChef icon indicating copy to clipboard operation
CyberChef copied to clipboard

Folder folding is not working in Firefox

Open PatrLind opened this issue 1 year ago • 1 comments

Describe the bug Folder folding is not working in Firefox

To Reproduce

  1. Using Firefix, go to https://gchq.github.io/CyberChef/#recipe=JSON_Beautify('%20%20%20%20',false,true)&input=eyJTdWIxMSI6eyJTdWIxMiI6eyJLZXkxMSI6IlZhbHVlMTEifX0sIlN1YjIxIjp7IlN1YjIyIjp7IktleTIxIjoiVmFsdTIxIn19fQ
  2. Click on the arrows to fold a sub tree
  3. Notice it doesn't fold

Expected behaviour The folders should fold (hide) the same way as they do in Chrome.

Desktop (if relevant, please complete the following information):

  • OS: Linux Mint 21.3
  • Browser: Firefox 122.0, Chomium 121.0.6167.139
  • CyberChef version: 10.6.0

PatrLind avatar Feb 05 '24 12:02 PatrLind

This issue seems easily reproducible, thanks for the clear bug report! :)

a3957273 avatar Feb 09 '24 00:02 a3957273

Changing

.json-summary {
    display: contents;
}

into

.json-summary {
    display: inline;
    list-style: none;
}

works on my side in Firefox and Edge.

GoForceX avatar Feb 14 '24 10:02 GoForceX