File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 1414 <table v-else class =" w-full text-sm text-left rtl:text-right text-gray-500 dark:text-gray-400 rounded-default" >
1515
1616 <tbody >
17-
17+ <tr v-for =" c in tableBodyStartInjection" :key =" c.id" >
18+ <td :colspan =" resource?.columns.length + 2" >
19+ <component :is =" getCustomComponent(c)" :meta =" c.meta" :resource =" resource" :adminUser =" coreStore.adminUser" />
20+ </td >
21+ </tr >
1822 <!-- table header -->
1923 <tr class =" t-header sticky z-10 top-0 text-xs bg-lightListTableHeading dark:bg-darkListTableHeading dark:text-gray-400" >
2024 <td scope =" col" class =" p-4" >
@@ -322,6 +326,7 @@ const props = defineProps<{
322326 sort: any [],
323327 noRoundings? : boolean ,
324328 customActionsInjection? : any [],
329+ tableBodyStartInjection? : any [],
325330}>();
326331
327332// emits, update page
Original file line number Diff line number Diff line change 114114 :totalRows =" totalRows"
115115 :checkboxes =" checkboxes"
116116 :customActionsInjection =" coreStore.resourceOptions?.pageInjections?.list?.customActionIcons"
117+ :tableBodyStartInjection =" coreStore.resourceOptions?.pageInjections?.list?.tableBodyStart"
117118 />
118119
119120 <component
You can’t perform that action at this time.
0 commit comments