mirror of
https://github.com/Kingsrook/qqq-frontend-material-dashboard.git
synced 2025-07-18 05:10:45 +00:00
CTLE-397: fix bug on unencoded component filterJSON
This commit is contained in:
@ -1077,7 +1077,7 @@ function ProcessRun({process, table, defaultProcessValues, isModal, isWidget, is
|
||||
else if (urlSearchParams.get("filterJSON"))
|
||||
{
|
||||
queryStringPairsForInit.push("recordsParam=filterJSON");
|
||||
queryStringPairsForInit.push(`filterJSON=${urlSearchParams.get("filterJSON")}`);
|
||||
queryStringPairsForInit.push(`filterJSON=${encodeURIComponent(urlSearchParams.get("filterJSON"))}`);
|
||||
}
|
||||
// todo once saved filters exist
|
||||
//else if(urlSearchParams.get("filterId")) {
|
||||
|
Reference in New Issue
Block a user