diff --git a/client/src/actions/encryption.js b/client/src/actions/encryption.js index 2f58abd3987..670a9f4ef13 100644 --- a/client/src/actions/encryption.js +++ b/client/src/actions/encryption.js @@ -41,6 +41,8 @@ export const setTlsConfig = (config) => async (dispatch, getState) => { response.certificate_chain = atob(response.certificate_chain); response.private_key = atob(response.private_key); + redirectToCurrentProtocol(response, httpPort); + const dnsStatus = await apiClient.getGlobalStatus(); if (dnsStatus) { dispatch(dnsStatusSuccess(dnsStatus)); @@ -48,7 +50,6 @@ export const setTlsConfig = (config) => async (dispatch, getState) => { dispatch(setTlsConfigSuccess(response)); dispatch(addSuccessToast('encryption_config_saved')); - redirectToCurrentProtocol(response, httpPort); } catch (error) { dispatch(addErrorToast({ error })); dispatch(setTlsConfigFailure()); diff --git a/client/src/components/Logs/Logs.css b/client/src/components/Logs/Logs.css index 138cd5c9680..8df1d62b12e 100644 --- a/client/src/components/Logs/Logs.css +++ b/client/src/components/Logs/Logs.css @@ -172,10 +172,8 @@ display: inline-flex; align-items: center; justify-content: center; - - --size: 2.5rem; - width: var(--size); - height: var(--size); + width: 2.5rem; + height: 2.5rem; padding: 0; margin-left: 0.9375rem; background-color: transparent; @@ -472,7 +470,7 @@ .filteringRules__filter { font-style: italic; - font-weight: normal; + font-weight: 400; margin-bottom: 1rem; }