adminforth 2.4.0-next.222 → 2.4.0-next.224
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -237,7 +237,7 @@
|
|
|
237
237
|
isLoading.value = false;
|
|
238
238
|
}
|
|
239
239
|
dataResult.value = result;
|
|
240
|
-
} else {
|
|
240
|
+
} else if (typeof props.data === 'object' && Array.isArray(props.data)) {
|
|
241
241
|
const start = (currentPage.value - 1) * props.pageSize;
|
|
242
242
|
const end = start + props.pageSize;
|
|
243
243
|
dataResult.value = { data: props.data.slice(start, end), total: props.data.length };
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
overflow-x-hidden z-50 min-w-[350px] justify-center items-center md:inset-0 h-[calc(100%-1rem)] max-h-full">
|
|
28
28
|
<div class="relative p-4 w-full max-h-full max-w-[400px]">
|
|
29
29
|
<!-- Modal content -->
|
|
30
|
-
<div class="af-login-modal-content relative bg-lightLoginViewBackground rounded-lg shadow dark:bg-darkLoginViewBackground dark:shadow-black" :class=" { 'rounded-b-none overflow-hidden': error } ">
|
|
30
|
+
<div class="af-login-popup af-login-modal-content relative bg-lightLoginViewBackground rounded-lg shadow dark:bg-darkLoginViewBackground dark:shadow-black" :class=" { 'rounded-b-none overflow-hidden': error } ">
|
|
31
31
|
<!-- Modal header -->
|
|
32
32
|
<div class="af-login-modal-header flex items-center justify-between flex-col p-4 md:p-5 border-b rounded-t dark:border-gray-600">
|
|
33
33
|
|