File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
extensions/ql-vscode/src/view/data-extensions-editor Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -137,11 +137,6 @@ export const MethodRow = ({
137137 } ) ;
138138 } , [ externalApiUsage ] ) ;
139139
140- const predicate =
141- modeledMethod ?. type && modeledMethod . type !== "none"
142- ? extensiblePredicateDefinitions [ modeledMethod . type ]
143- : undefined ;
144-
145140 const showModelTypeCell =
146141 ! externalApiUsage . supported ||
147142 ( modeledMethod && modeledMethod ?. type !== "none" ) ;
@@ -183,6 +178,10 @@ export const MethodRow = ({
183178 [ argumentsList ] ,
184179 ) ;
185180
181+ const predicate =
182+ modeledMethod ?. type && modeledMethod . type !== "none"
183+ ? extensiblePredicateDefinitions [ modeledMethod . type ]
184+ : undefined ;
186185 const showKindCell = predicate ?. supportedKinds ;
187186
188187 return (
You can’t perform that action at this time.
0 commit comments