You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@seatunnel.apache.org by zh...@apache.org on 2022/08/07 02:59:13 UTC

[incubator-seatunnel] branch dev updated: [Fix][UI] Fix the title in the user manage modal. (#2378)

This is an automated email from the ASF dual-hosted git repository.

zhongjiajie pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-seatunnel.git


The following commit(s) were added to refs/heads/dev by this push:
     new 6115ac44e [Fix][UI] Fix the title in the user manage modal. (#2378)
6115ac44e is described below

commit 6115ac44e8dec20a12caebabf32e3f3006127ad5
Author: songjianet <17...@qq.com>
AuthorDate: Sun Aug 7 10:59:09 2022 +0800

    [Fix][UI] Fix the title in the user manage modal. (#2378)
---
 seatunnel-ui/src/views/user-manage/list/components/form-modal.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/seatunnel-ui/src/views/user-manage/list/components/form-modal.tsx b/seatunnel-ui/src/views/user-manage/list/components/form-modal.tsx
index f52bc0608..3b78a01d1 100644
--- a/seatunnel-ui/src/views/user-manage/list/components/form-modal.tsx
+++ b/seatunnel-ui/src/views/user-manage/list/components/form-modal.tsx
@@ -73,7 +73,7 @@ const FormModal = defineComponent({
         title={
           this.status === 0
             ? this.t('user_manage.create')
-            : this.t('user_manage.edite')
+            : this.t('user_manage.edit')
         }
         show={this.showModal}
         onCancel={this.handleCancel}