fix: make idName and status props optional in KebabAction component
This commit is contained in:
parent
8e3ac4a264
commit
1e57420bc3
1 changed files with 2 additions and 2 deletions
|
|
@ -6,8 +6,8 @@ import { watch } from 'vue';
|
||||||
|
|
||||||
const props = withDefaults(
|
const props = withDefaults(
|
||||||
defineProps<{
|
defineProps<{
|
||||||
idName: string;
|
idName?: string;
|
||||||
status: string;
|
status?: string;
|
||||||
hideToggle?: boolean;
|
hideToggle?: boolean;
|
||||||
hideEdit?: boolean;
|
hideEdit?: boolean;
|
||||||
hideView?: boolean;
|
hideView?: boolean;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue