We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c339d0 commit 93de35eCopy full SHA for 93de35e
1 file changed
extensions/ql-vscode/src/view/model-editor/HiddenMethodsRow.tsx
@@ -4,7 +4,7 @@ import { pluralize } from "../../common/word";
4
import { DataGridCell, DataGridRow } from "../common/DataGrid";
5
import { ModelEditorViewState } from "../../model-editor/shared/view-state";
6
7
-const HiddenMethodsText = styled(DataGridCell)`
+const HiddenMethodsCell = styled(DataGridCell)`
8
text-align: center;
9
`;
10
@@ -27,11 +27,11 @@ export function HiddenMethodsRow({
27
28
return (
29
<DataGridRow>
30
- <HiddenMethodsText gridColumn={gridColumn}>
+ <HiddenMethodsCell gridColumn={gridColumn}>
31
{someMethodsAreVisible && "And "}
32
{pluralize(numHiddenMethods, "method", "methods")} modeled in other
33
CodeQL packs
34
- </HiddenMethodsText>
+ </HiddenMethodsCell>
35
</DataGridRow>
36
);
37
}
0 commit comments