FIX: #6943 Customer issues #885

Merged
alexm merged 7 commits from fix_customer_issues into dev 2024-11-07 16:20:22 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit d2680b0a1f - Show all commits

View File

@ -249,7 +249,7 @@ export function useArrayData(key = useRoute().meta.moduleName, userOptions) {
function updateStateParams() {
if (!route) return;
const newUrl = { path: route.path, query: { ...(route.query ?? {}) } };
if (store.appendParams)
if (store?.appendParams ?? true)
newUrl.query[store.searchUrl] = JSON.stringify(store.currentFilter);
if (store.navigate) {