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 f85469f commit 27e093dCopy full SHA for 27e093d
frontend/src/components/TabStrip.tsx
@@ -65,11 +65,15 @@ export const DragTab: Component<
65
style="z-index: 0;"
66
class="tab"
67
data-id={this.id}
68
- on:mousedown={(e) => {
+ on:mousedown={(e: MouseEvent) => {
69
this.mousedown(e);
70
e.stopPropagation();
71
e.preventDefault();
72
}}
73
+ on:contextmenu={() => {
74
+ if (hoverTimeout) clearTimeout(hoverTimeout);
75
+ this.tooltipActive = false;
76
+ }}
77
on:transitionend={() => {
78
cx.root.style.transition = "";
79
cx.root.style.zIndex = "0";
0 commit comments