mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 09:28:31 +00:00
Fixed UI after design review
This commit is contained in:
parent
65539ddbb1
commit
26c6c3b232
2 changed files with 3 additions and 3 deletions
|
|
@ -1 +1 @@
|
|||
Subproject commit 335435aa74f8d56997978d7e6343023ee2726f81
|
||||
Subproject commit 4898ef723fe9771a20c5490660103a098241bfdd
|
||||
|
|
@ -191,7 +191,7 @@ export const RadioButtonV2 = ({
|
|||
data-cy={`label-${String(componentName).toLowerCase()} `}
|
||||
data-disabled={isDisabled}
|
||||
id={String(componentName)}
|
||||
className={cx('radio-button,', 'd-flex', {
|
||||
className={cx('radio-button', 'd-flex', {
|
||||
[alignment === 'top' &&
|
||||
((labelWidth != 0 && label?.length != 0) ||
|
||||
(labelAutoWidth && labelWidth == 0 && label && label?.length != 0))
|
||||
|
|
@ -279,7 +279,7 @@ export const RadioButtonV2 = ({
|
|||
</div>
|
||||
</div>
|
||||
<div
|
||||
className={`${isValid ? '' : visibility ? 'd-flex' : 'none'}`}
|
||||
className={`${isValid ? 'd-none' : visibility ? 'd-flex' : 'd-none'}`}
|
||||
style={{
|
||||
color: 'var(--status-error-strong)',
|
||||
justifyContent: direction === 'right' ? 'flex-start' : 'flex-end',
|
||||
|
|
|
|||
Loading…
Reference in a new issue