We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63a1069 commit 9fd030bCopy full SHA for 9fd030b
frontend/src/views/website/website/config/basic/index.vue
@@ -135,6 +135,11 @@ const handleScroll = (event: WheelEvent) => {
135
const tabContainer = tabsRef.value.$el.querySelector('.el-tabs__nav-scroll');
136
if (!tabContainer) return;
137
138
+ const currentScrollTop = tabContainer.scrollTop;
139
+ if (currentScrollTop == 0) {
140
+ return;
141
+ }
142
+
143
const target = event.target as HTMLElement;
144
if (!target.classList.contains('el-tabs__item')) {
145
return;
0 commit comments