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