Skip to content

Commit 2405628

Browse files
Fix span size
1 parent 0a75a0e commit 2405628

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,9 @@ const UnmodelableMethodRow = forwardRef<
337337
<MethodClassifications method={method} />
338338
</ApiOrMethodRow>
339339
</DataGridCell>
340-
<DataGridCell gridColumn="span 4">Method already modeled</DataGridCell>
340+
<DataGridCell gridColumn={`span ${viewState.showMultipleModels ? 5 : 4}`}>
341+
Method already modeled
342+
</DataGridCell>
341343
</DataGridRow>
342344
);
343345
});

0 commit comments

Comments
 (0)