new design for rendertest #8

Merged
provod merged 28 commits from NightFox/HLRTest:master into master 2024-02-15 23:35:42 +01:00
Showing only changes of commit ad55f52e1e - Show all commits

View File

@ -264,7 +264,7 @@ const loadFromLocalStorage = (key, default_option) => {
case "false":
return false;
case "null":
return default_option ? default_option : null;
return (default_option === "" || default_option) ? default_option : null;
default:
return value;
}