Skip to content

Commit

Permalink
[4.x] Fix missing response from afterRequestCompleted (#8801)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacksleight authored Oct 4, 2023
1 parent 6ec5a2f commit 3d4d926
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/components/Listing.vue
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export default {
if (this.shouldRequestFirstPage) return this.request();
this.loading = false;
this.initializing = false;
this.afterRequestCompleted();
this.afterRequestCompleted(response);
}).catch(e => {
if (this.$axios.isCancel(e)) return;
this.loading = false;
Expand Down

0 comments on commit 3d4d926

Please sign in to comment.