Skip to content

Commit

Permalink
fix(lib): Tag type did not accept object (buefy#3911)
Browse files Browse the repository at this point in the history
- Fixes the issue that `Tag` did not accept objects as its `type`
  while objects actually work. Adds `Object` to acceptable types of
  `type`.

issue buefy#3887
  • Loading branch information
kikuomax committed Jan 8, 2024
1 parent 858a1d9 commit bfd3e43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/buefy-next/src/components/tag/Tag.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export default {
props: {
attached: Boolean,
closable: Boolean,
type: String,
type: [String, Object],
size: String,
rounded: Boolean,
disabled: Boolean,
Expand Down

0 comments on commit bfd3e43

Please sign in to comment.