Skip to content

Commit f402373

Browse files
committed
fix(DateInputBase): suffix
1 parent 726bb87 commit f402373

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/fields/DatePicker/DateInputBase.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,12 +111,12 @@ function DateInputBase(props: CubeDateAtomInputProps, ref) {
111111
</div>
112112
{(validationState && !isLoading) || isLoading || suffix ? (
113113
<div data-element="Suffix">
114-
{suffix}
115114
{(validationState && !isLoading) || isLoading ? (
116115
<div data-element="State">
117116
{validationState && !isLoading ? validation : null}
118117
</div>
119118
) : null}
119+
{suffix}
120120
</div>
121121
) : null}
122122
</DateInputWrapperElement>

0 commit comments

Comments
 (0)