Fix empty table data - add missing compute chain calls

This commit is contained in:
mahdahar 2026-02-16 10:54:56 +07:00
parent 8d762261d4
commit 5d1b01c4e8

View File

@ -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;
});