From 998fffe694ed1d66b07e126a98f18577d48068fd Mon Sep 17 00:00:00 2001 From: Nils Brinckmann <nils.brinckmann@gfz-potsdam.de> Date: Mon, 22 Mar 2021 08:55:04 +0100 Subject: [PATCH] Don't show warnings for the tab values (strings allowed now) --- components/AppBarTabsExtension.vue | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/components/AppBarTabsExtension.vue b/components/AppBarTabsExtension.vue index 5b1723160..ef7715df5 100644 --- a/components/AppBarTabsExtension.vue +++ b/components/AppBarTabsExtension.vue @@ -90,11 +90,10 @@ export default class AppBarTabsExtension extends Vue { * the active tab */ @Prop({ - default: null, - type: Number + default: null }) // @ts-ignore - readonly value: number | null + readonly value: string | number | null /** * an array of tabs -- GitLab