From 1e57420bc3275e9feb86215568cc568e3069bfc3 Mon Sep 17 00:00:00 2001 From: puriphatt Date: Wed, 25 Dec 2024 16:44:54 +0700 Subject: [PATCH] fix: make idName and status props optional in KebabAction component --- src/components/shared/KebabAction.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/shared/KebabAction.vue b/src/components/shared/KebabAction.vue index 521c47ea..82d817d2 100644 --- a/src/components/shared/KebabAction.vue +++ b/src/components/shared/KebabAction.vue @@ -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;