Skip to content

Commit 8446d7f

Browse files
fixed type
1 parent eaff29e commit 8446d7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plugin/components/shared/FieldLabel.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<script lang="ts" setup>
1212
export interface FieldLabelProps {
1313
label: string | undefined;
14-
required: boolean | undefined;
14+
required?: boolean | undefined;
1515
}
1616
1717
const { label, required = false } = defineProps<FieldLabelProps>();

0 commit comments

Comments
 (0)