This is an automated email from the ASF dual-hosted git repository.
chufenggao pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git
The following commit(s) were added to refs/heads/dev by this push:
new b8e942208e Fix incorrect button display text (#15160)
b8e942208e is described below
commit b8e942208e7dedb06e5bdc6049700fc46df24097
Author: c3Vu <[email protected]>
AuthorDate: Tue Nov 14 18:05:06 2023 +0800
Fix incorrect button display text (#15160)
---
dolphinscheduler-ui/src/views/projects/workflow/instance/index.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dolphinscheduler-ui/src/views/projects/workflow/instance/index.tsx
b/dolphinscheduler-ui/src/views/projects/workflow/instance/index.tsx
index ebed942fad..5e5f88e1c8 100644
--- a/dolphinscheduler-ui/src/views/projects/workflow/instance/index.tsx
+++ b/dolphinscheduler-ui/src/views/projects/workflow/instance/index.tsx
@@ -139,7 +139,7 @@ export default defineComponent({
style='position: absolute; bottom: 10px; left: 10px;'
class='btn-delete-all'
>
- t('project.workflow.delete')
+ {t('project.workflow.delete')}
</NButton>
)
}}