File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
extensions/ql-vscode/src/view/model-editor Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { pluralize } from "../../common/word";
44import { DataGridCell , DataGridRow } from "../common/DataGrid" ;
55import { ModelEditorViewState } from "../../model-editor/shared/view-state" ;
66
7- const HiddenMethodsText = styled ( DataGridCell ) `
7+ const HiddenMethodsCell = styled ( DataGridCell ) `
88 text-align: center;
99` ;
1010
@@ -27,11 +27,11 @@ export function HiddenMethodsRow({
2727
2828 return (
2929 < DataGridRow >
30- < HiddenMethodsText gridColumn = { gridColumn } >
30+ < HiddenMethodsCell gridColumn = { gridColumn } >
3131 { someMethodsAreVisible && "And " }
3232 { pluralize ( numHiddenMethods , "method" , "methods" ) } modeled in other
3333 CodeQL packs
34- </ HiddenMethodsText >
34+ </ HiddenMethodsCell >
3535 </ DataGridRow >
3636 ) ;
3737}
You can’t perform that action at this time.
0 commit comments