From 3d4d92685e8825a93239668b58f66ffa74811a70 Mon Sep 17 00:00:00 2001 From: Jack Sleight Date: Wed, 4 Oct 2023 15:24:13 +0100 Subject: [PATCH] [4.x] Fix missing response from `afterRequestCompleted` (#8801) --- resources/js/components/Listing.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/js/components/Listing.vue b/resources/js/components/Listing.vue index af0a09dcbb..7150d42817 100644 --- a/resources/js/components/Listing.vue +++ b/resources/js/components/Listing.vue @@ -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;