Fixes wrong vue prop types NOCHANGELOG
This commit is contained in:
parent
f21c860985
commit
75b33cebad
|
@ -424,7 +424,7 @@ export default {
|
|||
FetchButton,
|
||||
TagsList
|
||||
},
|
||||
props: { id: { type: Number, required: true } },
|
||||
props: { id: { type: String, required: true } },
|
||||
data () {
|
||||
return {
|
||||
isLoading: true,
|
||||
|
|
|
@ -365,7 +365,7 @@ export default {
|
|||
mixins: [
|
||||
TranslationsMixin
|
||||
],
|
||||
props: { id: { type: Number, required: true } },
|
||||
props: { id: { type: String, required: true } },
|
||||
data () {
|
||||
return {
|
||||
isLoading: true,
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue