diff --git a/src/renderer/src/components/config/actions/ActionCard.vue b/src/renderer/src/components/config/actions/ActionCard.vue index 90b6f6c..a977d32 100644 --- a/src/renderer/src/components/config/actions/ActionCard.vue +++ b/src/renderer/src/components/config/actions/ActionCard.vue @@ -7,48 +7,67 @@ - - +
+ + + + + + + + + + + + + + {{ action.label }} + + + + + + + + + +
@@ -73,7 +92,7 @@ import { cn } from '@renderer/lib/utils' import SendKeyAction from '@renderer/components/config/actions/SendKeyAction.vue' import SendStringAction from '@renderer/components/config/actions/SendStringAction.vue' import ScrambleText from '@renderer/components/common/ScrambleText.vue' -import { ChevronsUpDown, Check, GripHorizontal } from 'lucide-vue-next' +import { ChevronsUpDown, Check, GripHorizontal, Trash2, X } from 'lucide-vue-next' import { useElementSize } from '@vueuse/core' defineProps({ @@ -102,4 +121,5 @@ const { width } = useElementSize(comboboxButton) const open = ref(false) const value = ref('') +const confirmDelete = ref(false)