Skip to content
Snippets Groups Projects
Commit 75b33ceb authored by Marcos Peña's avatar Marcos Peña Committed by Georg Krause
Browse files

Fixes wrong vue prop types NOCHANGELOG

parent f21c8609
No related branches found
No related tags found
No related merge requests found
...@@ -424,7 +424,7 @@ export default { ...@@ -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 { ...@@ -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 { ...@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment