moving towards real data
This commit is contained in:
parent
ac3c05cb78
commit
40c4a5a37f
8 changed files with 303 additions and 84 deletions
|
|
@ -90,6 +90,12 @@ const handleLazyLoad = async (event) => {
|
|||
});
|
||||
}
|
||||
|
||||
// Clear cache when filters are active to ensure fresh data
|
||||
const hasActiveFilters = Object.keys(filters).length > 0;
|
||||
if (hasActiveFilters) {
|
||||
paginationStore.clearTableCache("clients");
|
||||
}
|
||||
|
||||
// Check cache first
|
||||
const cachedData = paginationStore.getCachedPage(
|
||||
"clients",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue