update groups section

This commit is contained in:
Christie Molloy 2020-09-29 14:21:07 -04:00
parent 8a513e3ecf
commit 4e67ecc1da
2 changed files with 7 additions and 7 deletions

View file

@ -10,6 +10,7 @@ import {
ServerGroupMembersRepresentation, ServerGroupMembersRepresentation,
} from "./models/server-info"; } from "./models/server-info";
import { TableToolbar } from "../components/table-toolbar/TableToolbar"; import { TableToolbar } from "../components/table-toolbar/TableToolbar";
import { ViewHeader } from "../components/view-header/ViewHeader";
import { import {
Button, Button,
Divider, Divider,
@ -101,12 +102,10 @@ export const GroupsSection = () => {
return ( return (
<React.Fragment> <React.Fragment>
<PageSection variant={PageSectionVariants.light}> <ViewHeader
<Title headingLevel="h3" size={TitleSizes["2xl"]}> titleKey="groups:groups"
{t("groups")} subKey="groups:groupsDescription"
</Title> />
</PageSection>
<Divider />
<PageSection variant={PageSectionVariants.light}> <PageSection variant={PageSectionVariants.light}>
<TableToolbar <TableToolbar
count={10} count={10}

View file

@ -10,6 +10,7 @@
"moveTo": "Move to", "moveTo": "Move to",
"delete": "Delete", "delete": "Delete",
"tableOfGroups": "Table of groups", "tableOfGroups": "Table of groups",
"name": "Name" "name": "Name",
"groupsDescription": "Description goes here"
} }
} }