From 5d1b01c4e81938fa8c071d190288a9f4eb023cf5 Mon Sep 17 00:00:00 2001 From: mahdahar <89adham@gmail.com> Date: Mon, 16 Feb 2026 10:54:56 +0700 Subject: [PATCH] Fix empty table data - add missing compute chain calls --- app/Views/shared/script_requests.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/Views/shared/script_requests.php b/app/Views/shared/script_requests.php index 926a236..c62ba07 100644 --- a/app/Views/shared/script_requests.php +++ b/app/Views/shared/script_requests.php @@ -177,6 +177,9 @@ document.addEventListener('alpine:init', () => { // Compute derived data after list is loaded this.computeFiltered(); this.computeValidatedCount(); + this.computeSorted(); + this.computeTotalPages(); + this.computePaginated(); }).finally(() => { this.isLoading = false; });