Skip to content

Commit e8be74d

Browse files
committed
Merge branch 'next' of github.com:devforth/adminforth into next
2 parents ad740c8 + 4166248 commit e8be74d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

adminforth/spa/src/views/ShowView.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -79,18 +79,18 @@
7979
<div
8080
v-if="loading"
8181
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"
8383
>
8484
<div
8585
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 rounded-t-lg border-b border-lightShowTableBodyBorder dark:border-darkShowTableBodyBorder"
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"
8787
>
8888
<div class="h-4 bg-gray-300 dark:bg-gray-600 rounded-full w-32"></div>
8989
</div>
9090

91-
<table class="w-full text-sm text-left table-fixed border rounded-lg overflow-hidden">
91+
<table class="w-full text-sm text-left table-fixed border-collapse">
9292
<thead class="bg-lightShowTableUnderHeadingBackground dark:bg-darkShowTableUnderHeadingBackground block md:table-row-group">
93-
<tr>
93+
<tr class="block md:table-row">
9494
<th scope="col" class="px-6 py-3 text-xs uppercase hidden md:w-52 md:table-cell text-lightShowTableUnderHeadingText dark:text-darkShowTableUnderHeadingText">
9595
{{ $t('Field') }}
9696
</th>
@@ -233,7 +233,7 @@ onMounted(async () => {
233233
if(coreStore.resourceOptions){
234234
checkAcessByAllowedActions(coreStore.resourceOptions.allowedActions,'show');
235235
}
236-
loading.value = false;
236+
// loading.value = false;
237237
});
238238
239239
const groups = computed(() => {

0 commit comments

Comments
 (0)