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 fe3b110 commit 02b573dCopy full SHA for 02b573d
frontend/src/tabs.tsx
@@ -294,6 +294,7 @@ export const Tabs: Component<
294
component.style.transform = `translateX(${tabPos}px)`;
295
if (transition && tab.dragpos == -1 && tab.pos != tabPos) {
296
component.style.transition = `transform ${TAB_TRANSITION}`;
297
+ this.afterEl.style.transition = `transform ${TAB_TRANSITION}`;
298
transitioningTabs++;
299
}
300
dragpos = Math.max(dragpos, tab.dragpos + width + TAB_PADDING);
@@ -371,6 +372,8 @@ export const Tabs: Component<
371
372
if (transitioningTabs == 0) {
373
this.tabs = this.tabs;
374
375
+
376
+ this.afterEl.style.transition = "";
377
};
378
379
return (
0 commit comments