We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3239d2 commit 5257c5eCopy full SHA for 5257c5e
src/Operations.tsx
@@ -246,7 +246,7 @@ const Operations: React.FC<OperationsProps> = props => {
246
<div className={`${prefixCls}-footer`}>
247
{showProgress && (
248
<div className={`${prefixCls}-progress`}>
249
- {countRender ? countRender(current + 1, count) : `${current + 1} / ${count}`}
+ {countRender ? countRender(current + 1, count) : <bdi>{`${current + 1} / ${count}`}</bdi>}
250
</div>
251
)}
252
0 commit comments