[Fix] Fixed change page event firing

This commit is contained in:
Robert von Burg 2022-04-28 14:59:10 +02:00
parent bb631ecc12
commit 438964b3d0
1 changed files with 4 additions and 1 deletions

View File

@ -138,7 +138,10 @@
this.setQueryParamsFromObject(this.parseQueryParams(queryParams));
}
this.fire("strolch-change-page", page, true);
this.fire("strolch-change-page", {
page: page,
keepQueryParams: true
});
}
});
</script>