Skip to content

Commit

Permalink
fix: Fixed an issue where the Dashboard didn't property narrow result…
Browse files Browse the repository at this point in the history
…s down to the selected site, due to `moreParams` being saved in the object state ([#236](#236))
  • Loading branch information
Andrew Welch committed May 18, 2022
1 parent 0d8513f commit cb8f28b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/web/assets/src/vue/DashboardTable.vue
Expand Up @@ -47,7 +47,7 @@
:initial-filter-text="filterText"
/>
<div class="vuetable-pagination clearafter">
<vuetable-pagination-info ref="paginationInfoTop" />
<vuetable-pagination-info ref="paginationInfoTop"/>

<div class="floated left pl-3 pt-3 text-gray-600">
<div class="select">
Expand Down Expand Up @@ -121,7 +121,7 @@
@vuetable:pagination-data="onPaginationData"
/>
<div class="vuetable-pagination clearafter">
<vuetable-pagination-info ref="paginationInfo" />
<vuetable-pagination-info ref="paginationInfo"/>
<vuetable-pagination
ref="pagination"
@vuetable-pagination:change-page="onChangePage"
Expand Down Expand Up @@ -237,7 +237,7 @@ export default {
const cacheKey = 'retour-dashboard-state-' + Craft.username + Craft.siteId;
return {
'cacheKey': cacheKey,
'ignoreProperties': ['numSelected', 'selectedIds'],
'ignoreProperties': ['numSelected', 'selectedIds', 'moreParams'],
};
},
onFilterSet(filterText) {
Expand Down

0 comments on commit cb8f28b

Please sign in to comment.