You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by so...@apache.org on 2022/04/13 10:05:06 UTC

[dolphinscheduler] branch dev updated: [Fix][UI Next] Fix the problem of disabling owned user input during project editing. (#9476)

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

songjian 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 e5c66ecc31 [Fix][UI Next] Fix the problem of disabling owned user input during project editing. (#9476)
e5c66ecc31 is described below

commit e5c66ecc318f2fe3c57c07a56e1ac68e88a3fa68
Author: Amy0104 <97...@users.noreply.github.com>
AuthorDate: Wed Apr 13 18:05:02 2022 +0800

    [Fix][UI Next] Fix the problem of disabling owned user input during project editing. (#9476)
---
 .../src/views/projects/list/components/project-modal.tsx                | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dolphinscheduler-ui-next/src/views/projects/list/components/project-modal.tsx b/dolphinscheduler-ui-next/src/views/projects/list/components/project-modal.tsx
index 5cf725816b..e90b8f530b 100644
--- a/dolphinscheduler-ui-next/src/views/projects/list/components/project-modal.tsx
+++ b/dolphinscheduler-ui-next/src/views/projects/list/components/project-modal.tsx
@@ -117,7 +117,7 @@ const ProjectModal = defineComponent({
           </NFormItem>
           <NFormItem label={t('project.list.owned_users')} path='userName'>
             <NInput
-              disabled={this.statusRef === 0}
+              disabled={true}
               v-model={[this.model.userName, 'value']}
               placeholder={t('project.list.username_tips')}
             />