Skip to content

Commit

Permalink
Fixing an issue with SSP list pages with missing new resources
Browse files Browse the repository at this point in the history
Fixes #11498

We weren't forcing an update of the cached page resource which meant the newly creating item wasn't necessarily showing up or wasn't showing up in the correct order.
  • Loading branch information
codyrancher committed Jan 7, 2025
1 parent 7632c51 commit 6b3433f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shell/mixins/resource-fetch.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ export default {
const opt = {
hasManualRefresh: this.hasManualRefresh,
pagination: { ...this.pagination },
force: this.paginating !== null // Fix for manual refresh (before ripped out).
force: true
};

if (this.apiFilter) {
Expand Down

0 comments on commit 6b3433f

Please sign in to comment.