File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
adminforth/spa/src/components Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change 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}`"
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)}"
You can’t perform that action at this time.
0 commit comments