Skip to content

Commit 5257c5e

Browse files
authored
fix: progressNode position in rtl mode (#409)
1 parent e3239d2 commit 5257c5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Operations.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ const Operations: React.FC<OperationsProps> = props => {
246246
<div className={`${prefixCls}-footer`}>
247247
{showProgress && (
248248
<div className={`${prefixCls}-progress`}>
249-
{countRender ? countRender(current + 1, count) : `${current + 1} / ${count}`}
249+
{countRender ? countRender(current + 1, count) : <bdi>{`${current + 1} / ${count}`}</bdi>}
250250
</div>
251251
)}
252252

0 commit comments

Comments
 (0)