File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
adminforth/spa/src/components Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 1717 <li v-for =" item in threeDotsDropdownItems" :key =" `dropdown-item-${item.label}`" >
1818 <a href =" #"
1919 class =" block px-4 py-2 hover:bg-lightThreeDotsMenuBodyBackgroundHover hover:text-lightThreeDotsMenuBodyTextHover dark:hover:bg-darkThreeDotsMenuBodyBackgroundHover dark:hover:text-darkThreeDotsMenuBodyTextHover"
20- >
20+ :class =" {
21+ 'pointer-events-none': checkboxes && checkboxes.length === 0 && item.meta?.disabledWhenNoCheckboxes,
22+ 'opacity-50': checkboxes && checkboxes.length === 0 && item.meta?.disabledWhenNoCheckboxes,
23+ 'cursor-not-allowed': checkboxes && checkboxes.length === 0 && item.meta?.disabledWhenNoCheckboxes,
24+ }" >
2125 <component :is =" getCustomComponent(item)"
2226 :meta =" item.meta"
2327 :resource =" coreStore.resource"
You can’t perform that action at this time.
0 commit comments