mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
Fix: Adjust text alignment based on direction in FileInput component
This commit is contained in:
parent
2c4f5e6ca7
commit
d0eec9fba7
1 changed files with 1 additions and 1 deletions
|
|
@ -330,7 +330,7 @@ export const FileInput = (props) => {
|
|||
className="tw-text-sm tw-w-full"
|
||||
style={{
|
||||
color: errTextColor,
|
||||
textAlign: direction ?? 'left',
|
||||
textAlign: direction === 'right' ? 'left' : 'right',
|
||||
fontSize: '11px',
|
||||
fontWeight: '400',
|
||||
lineHeight: '16px',
|
||||
|
|
|
|||
Loading…
Reference in a new issue