diff --git a/Core/core.php b/Core/core.php index 672c7bf..b69730f 100644 --- a/Core/core.php +++ b/Core/core.php @@ -10,7 +10,7 @@ if (is_file($autoLoad)) { require_once $autoLoad; } -const WEBBASE_VERSION = "2.4.2"; +const WEBBASE_VERSION = "2.4.3"; spl_autoload_extensions(".php"); spl_autoload_register(function ($class) { diff --git a/react/admin-panel/src/views/profile/mfa-box.js b/react/admin-panel/src/views/profile/mfa-box.js index aa3947d..47cc2a4 100644 --- a/react/admin-panel/src/views/profile/mfa-box.js +++ b/react/admin-panel/src/views/profile/mfa-box.js @@ -8,9 +8,8 @@ import MfaFido from "./mfa-fido"; import CollapseBox from "./collapse-box"; const MfaStatusBox = styled(Box)((props) => ({ - "& > svg": { - marginRight: props.theme.spacing(1), - }, + display: "grid", + gridTemplateColumns: "30px auto", })); const MFAOptions = styled(Box)((props) => ({ @@ -69,7 +68,7 @@ export default function MultiFactorBox(props) { - {L("account.2fa_type_" + profile.twoFactorToken.type)} + {L("account.2fa_type_" + profile.twoFactorToken.type)} {L("account.password")} @@ -82,7 +81,7 @@ export default function MultiFactorBox(props) {