batchCodes.html?showCountriesColumn=yes or batchCodes.html?showCountriesColumn=no

This commit is contained in:
frankknoll
2023-06-09 22:47:21 +02:00
parent 39d4e47314
commit 79156123d7
4 changed files with 15 additions and 10 deletions

View File

@@ -58,4 +58,10 @@ class UIUtils {
}
}
}
static getSearchParam(urlParams, searchParam, defaultValue) {
return urlParams.has(searchParam) ?
urlParams.get(searchParam) :
defaultValue;
}
}