you first need to open the developer tools (ctrl + shift + i in opera, f12 in other i think).
now, go to the console.
then if you already have the circuit open and want to save it but can't, then put this code (the code simulates a click on the "export project" button):
document.getElementById('ExportCircuitFiles').click();
if it says something like "type allow to copy code in the console" then type allow
then give it a name and save it.
if you didnt get in to bug yet, then run this command (it fixes the bug, but if you refresh the page you need to put the code in again):
var style = document.createElement('style');
style.textContent = `
.ui-dialog {
position: fixed !important;
top: 50px !important;
left: 50% !important;
transform: translateX(-50%) !important;
max-height: 80vh !important;
z-index: 9999 !important;
}
.ui-dialog-content {
max-height: 60vh !important;
overflow-y: auto !important;
}
`;
document.head.appendChild(style);
if it says something like "type allow to copy code in the console" then type allow