We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent afc9635 commit a07e829Copy full SHA for a07e829
extensions/ql-vscode/src/view/data-extensions-editor/MethodRow.tsx
@@ -35,6 +35,10 @@ const UsagesButton = styled.button`
35
cursor: pointer;
36
`;
37
38
+const ViewLink = styled(VSCodeLink)`
39
+ white-space: nowrap;
40
+`;
41
+
42
type Props = {
43
externalApiUsage: ExternalApiUsage;
44
modeledMethod: ModeledMethod | undefined;
@@ -195,7 +199,7 @@ export const MethodRow = ({
195
199
{externalApiUsage.usages.length}
196
200
</UsagesButton>
197
201
)}
198
- <VSCodeLink onClick={jumpToUsage}>View</VSCodeLink>
202
+ <ViewLink onClick={jumpToUsage}>View</ViewLink>
203
</ApiOrMethodCell>
204
<VSCodeDataGridCell gridColumn={2}>
205
<Dropdown
0 commit comments