We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 645b7f7 + 41dc8ad commit 8f21238Copy full SHA for 8f21238
1 file changed
src/visualBuilder/listeners/mouseClick.ts
@@ -78,6 +78,14 @@ async function handleBuilderInteraction(
78
if (eventTarget?.getAttribute("data-studio-ui") === "true") {
79
return;
80
}
81
+
82
+ if (params.event.altKey) {
83
+ if (isAnchorElement) {
84
+ params.event.preventDefault();
85
+ params.event.stopPropagation();
86
+ }
87
+ return;
88
89
// prevent default behavior for anchor elements and elements with cslp attribute
90
if (
91
isAnchorElement ||
0 commit comments