FE: None value fixes and overrides of setting values

Signed-off-by: jokob-sk <jokob.sk@gmail.com>
This commit is contained in:
jokob-sk
2026-01-31 11:13:35 +11:00
parent a6f9b56abb
commit 4506aa3b1f
5 changed files with 60 additions and 36 deletions

View File

@@ -181,7 +181,7 @@ function getSettingOptions (key) {
if (result == "")
{
console.log(`Setting options with key "${key}" not found`)
// console.log(`Setting options with key "${key}" not found`)
result = []
}
@@ -197,10 +197,10 @@ function getSetting (key) {
result = getCache(`nax_set_${key}`, true);
if (result == "")
{
console.log(`Setting with key "${key}" not found`)
}
// if (result == "")
// {
// console.log(`Setting with key "${key}" not found`)
// }
return result;
}