We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a502e52 commit 317d3b3Copy full SHA for 317d3b3
1 file changed
extensions/ql-vscode/src/view/model-alerts/ModelAlertsResults.tsx
@@ -85,7 +85,14 @@ export const ModelAlertsResults = ({
85
<VSCodeBadge>{formatDecimal(modelAlerts.alerts.length)}</VSCodeBadge>
86
<MethodName {...modelAlerts.model}></MethodName>
87
<ModelTypeText>{modelAlerts.model.type}</ModelTypeText>
88
- <ViewLink onClick={viewInModelEditor}>View</ViewLink>
+ <ViewLink
89
+ onClick={(event: React.MouseEvent) => {
90
+ event.stopPropagation();
91
+ viewInModelEditor();
92
+ }}
93
+ >
94
+ View
95
+ </ViewLink>
96
</TitleContainer>
97
{isExpanded && (
98
<>
0 commit comments