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 71a21df commit b0c2a6dCopy full SHA for b0c2a6d
1 file changed
src/Preview/Footer.tsx
@@ -86,7 +86,7 @@ export default function Footer(props: FooterProps) {
86
// >>>>> Progress
87
const progressNode = showProgress && (
88
<div className={`${prefixCls}-progress`}>
89
- {countRender ? countRender(current + 1, count) : `${current + 1} / ${count}`}
+ {countRender ? countRender(current + 1, count) : <bdi>{`${current + 1} / ${count}`}</bdi>}
90
</div>
91
);
92
0 commit comments