Browse Source

fix: missing rtl className for Input count (#41319)

pull/41203/head
Danial Soheili 2 years ago
committed by GitHub
parent
commit
00bbd66064
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      components/input/TextArea.tsx

1
components/input/TextArea.tsx

@ -104,6 +104,7 @@ const TextArea = forwardRef<TextAreaRef, TextAreaProps>(
countWrapper: classNames(
`${prefixCls}-textarea`,
`${prefixCls}-textarea-show-count`,
{ [`${prefixCls}-textarea-show-count-rtl`]: direction === 'rtl' },
hashId,
),
textarea: classNames(

Loading…
Cancel
Save