Fixes wrong vue prop types NOCHANGELOG

This commit is contained in:
Marcos Peña 2022-04-17 15:53:44 +00:00 committed by Georg Krause
parent f21c860985
commit 75b33cebad
3 changed files with 3 additions and 3 deletions

View File

@ -424,7 +424,7 @@ export default {
FetchButton,
TagsList
},
props: { id: { type: Number, required: true } },
props: { id: { type: String, required: true } },
data () {
return {
isLoading: true,

View File

@ -365,7 +365,7 @@ export default {
mixins: [
TranslationsMixin
],
props: { id: { type: Number, required: true } },
props: { id: { type: String, required: true } },
data () {
return {
isLoading: true,

View File

@ -468,7 +468,7 @@ export default {
InstancePolicyForm,
InstancePolicyCard
},
props: { id: { type: Number, required: true }, allowListEnabled: { type: Boolean, required: true } },
props: { id: { type: String, required: true }, allowListEnabled: { type: Boolean, required: true } },
data () {
return {
lodash,