format
This commit is contained in:
parent
82fb002e76
commit
d7b154b656
3 changed files with 49 additions and 40 deletions
|
@ -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
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -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}`
|
||||||
|
|
|
@ -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>
|
||||||
|
|
Loading…
Reference in a new issue