From 188ac0757ffb7e96f0018f04493a07bdf15d8177 Mon Sep 17 00:00:00 2001 From: Erik Jan de Wit Date: Tue, 25 May 2021 12:04:58 +0200 Subject: [PATCH] fixed type of save button fixing: #632 --- public/index.css | 1 + src/clients/advanced/SaveReset.tsx | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/public/index.css b/public/index.css index e75c4b8dc8..eb44a2e12e 100644 --- a/public/index.css +++ b/public/index.css @@ -7,6 +7,7 @@ .keycloak__form { max-width: 1024px; + margin-bottom: 52px; } label.pf-c-form__label { diff --git a/src/clients/advanced/SaveReset.tsx b/src/clients/advanced/SaveReset.tsx index 1437d7cbdf..24b594d3cf 100644 --- a/src/clients/advanced/SaveReset.tsx +++ b/src/clients/advanced/SaveReset.tsx @@ -9,14 +9,14 @@ type SaveResetProps = ActionGroupProps & { }; export const SaveReset = ({ name, save, reset, ...rest }: SaveResetProps) => { - const { t } = useTranslation(); + const { t } = useTranslation("common"); return ( - );