Skip to content

Commit

Permalink
fix(Alert): fix wrong type of actions (#507)
Browse files Browse the repository at this point in the history
  • Loading branch information
171h authored and benjamincanac committed Sep 7, 2023
1 parent a298770 commit b243e8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime/components/elements/Alert.vue
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export default defineComponent({
default: () => appConfig.ui.alert.default.closeButton
},
actions: {
type: Array as PropType<Button & { click: Function }[]>,
type: Array as PropType<(Button & { click: Function })[]>,
default: () => []
},
color: {
Expand Down

0 comments on commit b243e8c

Please sign in to comment.