From 025f626323c5e66b3951d9463b6a8e97c09ff6bc Mon Sep 17 00:00:00 2001 From: aojunhao123 <1844749591@qq.com> Date: Thu, 17 Apr 2025 13:04:52 +0800 Subject: [PATCH 1/2] fix: progressNode position in rtl mode --- src/Operations.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Operations.tsx b/src/Operations.tsx index e7091c17..43a6df01 100644 --- a/src/Operations.tsx +++ b/src/Operations.tsx @@ -246,7 +246,9 @@ const Operations: React.FC = props => {
{showProgress && (
- {countRender ? countRender(current + 1, count) : `${current + 1} / ${count}`} + + {countRender ? countRender(current + 1, count) : `${current + 1} / ${count}`} +
)} From 2f3886657c7f4f62e495bdb50f5f706560ed1ac6 Mon Sep 17 00:00:00 2001 From: aojunhao123 <1844749591@qq.com> Date: Thu, 17 Apr 2025 14:39:34 +0800 Subject: [PATCH 2/2] update --- src/Operations.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Operations.tsx b/src/Operations.tsx index 43a6df01..9fcdbeb0 100644 --- a/src/Operations.tsx +++ b/src/Operations.tsx @@ -246,9 +246,7 @@ const Operations: React.FC = props => {
{showProgress && (
- - {countRender ? countRender(current + 1, count) : `${current + 1} / ${count}`} - + {countRender ? countRender(current + 1, count) : {`${current + 1} / ${count}`}}
)}