From c39025f1b86fd5cfc114907e6ddb86d648d45006 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Wed, 15 Jul 2026 18:43:15 +0300 Subject: [PATCH] fixed vaartis issue. probably not a real fix tho --- src/components/tab_switcher/tab_switcher.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/tab_switcher/tab_switcher.jsx b/src/components/tab_switcher/tab_switcher.jsx index a3c5b61cd..07327af27 100644 --- a/src/components/tab_switcher/tab_switcher.jsx +++ b/src/components/tab_switcher/tab_switcher.jsx @@ -86,7 +86,7 @@ export default { this.onSwitch.call(null, this.slots()[index].key) } this.active = index - if (this.scrollableTabs) { + if (this.scrollableTabs && this.$refs.contents) { this.$refs.contents.scrollTop = 0 } },