8062-testToMaster_2 #792

Merged
alexm merged 347 commits from 8062-testToMaster_2 into master 2024-10-03 05:48:03 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 4f662375cd - Show all commits
src/components/VnTable

View File

@ -200,7 +200,7 @@ function setUserParams(watchedParams, watchedOrder) {
function sanitizer(params) {
for (const [key, value] of Object.entries(params)) {
if (typeof value == 'object') {
if (value && typeof value == 'object') {
const param = Object.values(value)[0];
if (typeof param == 'string') params[key] = param.replaceAll('%', '');
}