Skip to content

Commit a2c9ac7

Browse files
Move the method classification to the start of the row
1 parent 1870455 commit a2c9ac7

File tree

1 file changed

+1
-1
lines changed
  • extensions/ql-vscode/src/view/data-extensions-editor

1 file changed

+1
-1
lines changed

extensions/ql-vscode/src/view/data-extensions-editor/MethodRow.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,14 +204,14 @@ function ModelableMethodRow(props: Props) {
204204
<VSCodeDataGridRow>
205205
<ApiOrMethodCell gridColumn={1}>
206206
<ModelingStatusIndicator status={modelingStatus} />
207+
<MethodClassifications externalApiUsage={externalApiUsage} />
207208
<ExternalApiUsageName {...props} />
208209
{mode === Mode.Application && (
209210
<UsagesButton onClick={jumpToUsage}>
210211
{externalApiUsage.usages.length}
211212
</UsagesButton>
212213
)}
213214
<ViewLink onClick={jumpToUsage}>View</ViewLink>
214-
<MethodClassifications externalApiUsage={externalApiUsage} />
215215
</ApiOrMethodCell>
216216
<VSCodeDataGridCell gridColumn={2}>
217217
<Dropdown

0 commit comments

Comments
 (0)