improved tooltip in map, improved user-settings handling

This commit is contained in:
orangecoding
2026-01-26 11:50:16 +01:00
parent 59226491f2
commit afc200c9e1
3 changed files with 25 additions and 9 deletions

View File

@@ -95,7 +95,7 @@ function isOneOf(word, arr) {
* @returns {boolean}
*/
function nullOrEmpty(val) {
return val == null || val.length === 0 || val === 'null' || val === 'undefined';
return val == null || val.length === 0;
}
/**