Related problem
It seems that GUI would save the config whoever used the GUI most recently. When open https://fcp-indi.github.io/C-PAC_GUI/, it showed a lot of config “Default (2), Default (3), ... ” which were created by someone else earlier. If the earlier user duplicated the default one but changed something, the name is still “Default something”. This could be confusing to the new user. It would be good to have a clean Home page with only “Default” config showing there.
Originally posted by @TingsterX in #131 (comment)
Proposed feature
We should add / restore a "clear custom configurations" button to the GUI (there is one in the top-right of the "nightly" developer version of the GUI
)
Acceptance criteria
Alternatives
- clear documentation of how to clear custom configurations
Additional context
The configs beyond the default are stored in the browser's localStorage ― if you want to clear them out, you can open a browser console and run either
or
localStorage.removeItem('state');
to clear them out.
Related problem
Originally posted by @TingsterX in #131 (comment)
Proposed feature
We should add / restore a "clear custom configurations" button to the GUI (there is one in the top-right of the "nightly" developer version of the GUI
)
Acceptance criteria
Alternatives
Additional context
The configs beyond the default are stored in the browser's
localStorage― if you want to clear them out, you can open a browser console and run eitheror
to clear them out.