Skip to content

Commit dfd178f

Browse files
committed
fix: fix virtual resource list table style
1 parent 3b7493c commit dfd178f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

adminforth/spa/src/components/ResourceListTableVirtual.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@
9494

9595
<!-- Visible rows -->
9696
<component
97-
v-else
9897
v-for="(row, rowI) in visibleRows"
9998
:is="tableRowReplaceInjection ? getCustomComponent(tableRowReplaceInjection) : 'tr'"
10099
:key="`row_${row._primaryKeyValue}`"
@@ -108,7 +107,7 @@
108107
:class="{'border-b': rowI !== visibleRows.length - 1, 'cursor-pointer': row._clickUrl !== null}"
109108
@mounted="(el: any) => updateRowHeight(`row_${row._primaryKeyValue}`, el.offsetHeight)"
110109
>
111-
<td class="w-4 p-4 cursor-default sticky-column bg-lightListTableHeading dark:bg-darkListTableHeading" @click="(e)=>e.stopPropagation()">
110+
<td class="w-4 p-4 cursor-default sticky-column bg-lightListTable dark:bg-darkListTable" @click="(e)=>e.stopPropagation()">
112111
<Checkbox
113112
:model-value="checkboxesInternal.includes(row._primaryKeyValue)"
114113
@change="(e: any)=>{addToCheckedValues(row._primaryKeyValue)}"

0 commit comments

Comments
 (0)