Updates type expected for TaxonomyId props in some components,

This commit is contained in:
mateuswetah 2024-03-27 18:18:00 -03:00
parent 153117ac5e
commit cb0e3b767b
2 changed files with 2 additions and 2 deletions

View File

@ -293,7 +293,7 @@ export default {
TermEditionForm: defineAsyncComponent(() => import('../edition/term-edition-form.vue'))
},
props: {
taxonomyId: String,
taxonomyId: [ String, Number ],
currentUserCanEditTaxonomy: Boolean,
selected: Array,
selectedColumnIndex: Number,

View File

@ -129,7 +129,7 @@ export default {
TermsListHierarchical
},
props: {
taxonomyId: String,
taxonomyId: [ String, Number ],
currentUserCanEditTaxonomy: Boolean,
isHierarchical: Boolean
},