Replies: 2 comments
-
I've never written rust nor do I know the libraries you're using but from some looking around I think the answer would be somewhere along the lines of:
|
Beta Was this translation helpful? Give feedback.
-
Sorry for the late response and thanks for the suggestion! Currently, all data is indeed stored per browser session. If you open multiple tabs, the session is loaded into the tab on load, and whenever you save, the data is stored (overridden) into the local browser data. This actually makes it problematic to have multiple tabs open, as saving in tab 1, and then saving in tab 2, the data from 2 will override the data from tab 1. A proper solution to the problem would:
However, there does not seem to be an easy way to do 1 with |
Beta Was this translation helpful? Give feedback.
-
So, you have some sort of session: If you configure something, then close the tab and re-open it the setup you made is still there.
You can also open multiple tabs, and set up different builds - or compare stuff, etc...
However if you close and re-open the browser with 2 configurations (tabs) open, they will then both contain the same setup.
I am aware that I can save and load these, however it would be nice if it would 'just work out of the box', remembering the last state for each tab independently.
Beta Was this translation helpful? Give feedback.
All reactions