This commit is contained in:
Christie Molloy 2020-10-13 17:06:58 -04:00
parent 82fb002e76
commit d7b154b656
3 changed files with 49 additions and 40 deletions

View file

@ -29,7 +29,7 @@ export const GroupsCreateModal = ({
setIsCreateModalOpen, setIsCreateModalOpen,
createGroupName, createGroupName,
setCreateGroupName, setCreateGroupName,
refresh refresh,
}: GroupsCreateModalProps) => { }: GroupsCreateModalProps) => {
const { t } = useTranslation("groups"); const { t } = useTranslation("groups");
const httpClient = useContext(HttpClientContext)!; const httpClient = useContext(HttpClientContext)!;
@ -53,7 +53,10 @@ export const GroupsCreateModal = ({
refresh(); refresh();
addAlert(t("groupCreated"), AlertVariant.success); addAlert(t("groupCreated"), AlertVariant.success);
} catch (error) { } catch (error) {
addAlert(`${t("couldNotCreateGroup")} ': '${error}'`, AlertVariant.danger); addAlert(
`${t("couldNotCreateGroup")} ': '${error}'`,
AlertVariant.danger
);
} }
} }
}; };

View file

@ -80,7 +80,10 @@ export const GroupsList = ({ list, refresh }: GroupsListProps) => {
}, },
{ {
title: t("common:Delete"), title: t("common:Delete"),
onClick: async (_: React.MouseEvent<Element, MouseEvent>, rowId: number) => { onClick: async (
_: React.MouseEvent<Element, MouseEvent>,
rowId: number
) => {
try { try {
await httpClient.doDelete( await httpClient.doDelete(
`/admin/realms/${realm}/groups/${list![rowId].id}` `/admin/realms/${realm}/groups/${list![rowId].id}`

View file

@ -102,7 +102,10 @@ export const GroupsSection = () => {
toolbarItem={ toolbarItem={
<> <>
<ToolbarItem> <ToolbarItem>
<Button variant="primary" onClick={() => handleModalToggle()}> <Button
variant="primary"
onClick={() => handleModalToggle()}
>
{t("createGroup")} {t("createGroup")}
</Button> </Button>
</ToolbarItem> </ToolbarItem>