From 43556e99b978eec21cacad04f7516f47aed27044 Mon Sep 17 00:00:00 2001 From: Thiago Dallacqua <104855841+thiagodallacqua-hpe@users.noreply.github.com> Date: Fri, 20 Sep 2024 11:56:13 -0300 Subject: [PATCH] fix: Remove CSS rule for hiding the Form.Item error message (#9872) --- .../src/components/HyperparameterSearchModal.module.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/webui/react/src/components/HyperparameterSearchModal.module.scss b/webui/react/src/components/HyperparameterSearchModal.module.scss index 44edbade206..d05065a445e 100644 --- a/webui/react/src/components/HyperparameterSearchModal.module.scss +++ b/webui/react/src/components/HyperparameterSearchModal.module.scss @@ -14,9 +14,6 @@ :global(.ant-modal-confirm-btns) { display: none; } - :global(.ant-form-item-explain) { - display: none; - } :global(.ant-form-item) { min-width: fit-content; } @@ -69,6 +66,9 @@ grid-auto-rows: max-content; overflow-x: auto; + :global(.ant-form-item-explain) { + display: none; + } .hyperparameterName { align-items: center; display: flex;