Skip to content

Commit 9d22a7a

Browse files
committed
fix: make run action padding clickable
1 parent a845412 commit 9d22a7a

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

custom/BulkActionButton.vue

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<template>
22
<Dialog
3+
ref="dialogRef"
34
class="w-[600px]"
45
:buttons="[
56
{
@@ -86,6 +87,16 @@
8687
clearCheckboxes: () => void;
8788
}>();
8889
90+
91+
const dialogRef = ref();
92+
async function openDialog(dialog: any) {
93+
dialogRef.value.open();
94+
}
95+
96+
defineExpose({
97+
click: openDialog,
98+
});
99+
89100
const checkedLanguages = ref<Record<string, boolean>>({});
90101
const isLoading = ref(false);
91102
const allChecked = computed(() => Object.values(checkedLanguages.value).every(Boolean));

0 commit comments

Comments
 (0)