Skip to content

Commit

Permalink
Fix: When sending Ajax parameters, the SSP scripts expect the _null
Browse files Browse the repository at this point in the history
… array to be the same length as the standard values one.
  • Loading branch information
AllanJard committed Aug 11, 2023
1 parent 4bcc203 commit 5a50202
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/SearchPanes.ts
Expand Up @@ -169,6 +169,9 @@ export default class SearchPanes {
if (data.searchPanes[src][i] === null) {
data.searchPanes_null[src][i] = true;
}
else {
data.searchPanes_null[src][i] = false;
}
}
}

Expand Down Expand Up @@ -839,6 +842,9 @@ export default class SearchPanes {
if (!data.searchPanes[src][i]) {
data.searchPanes_null[src][i] = true;
}
else {
data.searchPanes_null[src][i] = false;
}

filterCount++;
}
Expand Down

0 comments on commit 5a50202

Please sign in to comment.