File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
extensions/ql-vscode/src/view/model-editor Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -327,17 +327,19 @@ const UnmodelableMethodRow = forwardRef<
327327 < DataGridCell >
328328 < ApiOrMethodRow >
329329 < ModelingStatusIndicator status = "saved" />
330+ < MethodClassifications method = { method } />
330331 < MethodName { ...props . method } />
331332 { viewState . mode === Mode . Application && (
332333 < UsagesButton onClick = { jumpToMethod } >
333334 { method . usages . length }
334335 </ UsagesButton >
335336 ) }
336337 < ViewLink onClick = { jumpToMethod } > View</ ViewLink >
337- < 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} ) ;
You can’t perform that action at this time.
0 commit comments