diff --git a/src/components/NcAppNavigationNew/NcAppNavigationNew.vue b/src/components/NcAppNavigationNew/NcAppNavigationNew.vue index 375d926051..402e57e0a0 100644 --- a/src/components/NcAppNavigationNew/NcAppNavigationNew.vue +++ b/src/components/NcAppNavigationNew/NcAppNavigationNew.vue @@ -82,6 +82,9 @@ export default { type: { type: String, default: 'primary', + validator(value) { + return ['primary', 'secondary', 'tertiary'].indexOf(value) !== -1 + }, }, },