adminforth 2.27.0-next.25 → 2.27.0-next.26
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.
|
@@ -79,18 +79,18 @@
|
|
|
79
79
|
<div
|
|
80
80
|
v-if="loading"
|
|
81
81
|
role="status"
|
|
82
|
-
class="animate-pulse overflow-x-auto shadow-resourseFormShadow dark:shadow-darkResourseFormShadow"
|
|
82
|
+
class="animate-pulse overflow-x-auto shadow-resourseFormShadow dark:shadow-darkResourseFormShadow rounded-lg overflow-hidden border border-lightShowTableBodyBorder dark:border-darkShowTableBodyBorder"
|
|
83
83
|
>
|
|
84
84
|
<div
|
|
85
85
|
v-if="groups && groups.length > 0"
|
|
86
|
-
class="text-md font-semibold px-6 py-3 flex flex-1 items-center bg-lightShowTableHeadingBackground dark:bg-darkShowTableHeadingBackground dark:text-darkShowTableHeadingText
|
|
86
|
+
class="text-md font-semibold px-6 py-3 flex flex-1 items-center bg-lightShowTableHeadingBackground dark:bg-darkShowTableHeadingBackground dark:text-darkShowTableHeadingText border-b border-lightShowTableBodyBorder dark:border-darkShowTableBodyBorder"
|
|
87
87
|
>
|
|
88
88
|
<div class="h-4 bg-gray-300 dark:bg-gray-600 rounded-full w-32"></div>
|
|
89
89
|
</div>
|
|
90
90
|
|
|
91
|
-
<table class="w-full text-sm text-left table-fixed border
|
|
91
|
+
<table class="w-full text-sm text-left table-fixed border-collapse">
|
|
92
92
|
<thead class="bg-lightShowTableUnderHeadingBackground dark:bg-darkShowTableUnderHeadingBackground block md:table-row-group">
|
|
93
|
-
<tr>
|
|
93
|
+
<tr class="block md:table-row">
|
|
94
94
|
<th scope="col" class="px-6 py-3 text-xs uppercase hidden md:w-52 md:table-cell text-lightShowTableUnderHeadingText dark:text-darkShowTableUnderHeadingText">
|
|
95
95
|
{{ $t('Field') }}
|
|
96
96
|
</th>
|
|
@@ -233,7 +233,7 @@ onMounted(async () => {
|
|
|
233
233
|
if(coreStore.resourceOptions){
|
|
234
234
|
checkAcessByAllowedActions(coreStore.resourceOptions.allowedActions,'show');
|
|
235
235
|
}
|
|
236
|
-
loading.value = false;
|
|
236
|
+
// loading.value = false;
|
|
237
237
|
});
|
|
238
238
|
|
|
239
239
|
const groups = computed(() => {
|