adminforth 1.3.37 → 1.3.39

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adminforth",
3
- "version": "1.3.37",
3
+ "version": "1.3.39",
4
4
  "description": "OpenSource Vue3 powered forth-generation admin panel",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -164,14 +164,17 @@
164
164
  <div class="tooltip-arrow" data-popper-arrow></div>
165
165
  </div>
166
166
 
167
- <component
168
- v-if="coreStore.resourceOptions?.pageInjections?.edit?.customActionIcons"
169
- :is="getCustomComponent(coreStore.resourceOptions?.pageInjections?.edit?.customActionIcons)"
170
- :meta="coreStore.resourceOptions?.pageInjections?.edit?.customActionIcons.meta"
171
- :resource="coreStore.resource"
172
- :adminUser="coreStore.adminUser"
173
- :record="row"
174
- />
167
+
168
+ <template v-if="coreStore.resourceOptions?.pageInjections?.list?.customActionIcons">
169
+ <component
170
+ v-for="c in coreStore.resourceOptions?.pageInjections?.list?.customActionIcons"
171
+ :is="getCustomComponent(c)"
172
+ :meta="c.meta"
173
+ :resource="coreStore.resource"
174
+ :adminUser="coreStore.adminUser"
175
+ :record="row"
176
+ />
177
+ </template>
175
178
  </div>
176
179
  </td>
177
180
  </tr>