Skip to content

Commit 93de35e

Browse files
Rename HiddenMethodsText => HiddenMethodsCell
1 parent 8c339d0 commit 93de35e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { pluralize } from "../../common/word";
44
import { DataGridCell, DataGridRow } from "../common/DataGrid";
55
import { 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
}

0 commit comments

Comments
 (0)