fix: make idName and status props optional in KebabAction component

This commit is contained in:
puriphatt 2024-12-25 16:44:54 +07:00
parent 8e3ac4a264
commit 1e57420bc3

View file

@ -6,8 +6,8 @@ import { watch } from 'vue';
const props = withDefaults(
defineProps<{
idName: string;
status: string;
idName?: string;
status?: string;
hideToggle?: boolean;
hideEdit?: boolean;
hideView?: boolean;