You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by li...@apache.org on 2022/05/05 08:37:26 UTC

[dolphinscheduler] branch dev updated: [Fix][UI-NEXT] Disable file name (#9893)

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

liudongkai 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 693b8a976b [Fix][UI-NEXT] Disable file name (#9893)
693b8a976b is described below

commit 693b8a976b3f99aad5cf3ec1e8139799b0047491
Author: labbomb <73...@qq.com>
AuthorDate: Thu May 5 01:37:21 2022 -0700

    [Fix][UI-NEXT] Disable file name (#9893)
---
 .../src/views/projects/workflow/definition/components/import-modal.tsx | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dolphinscheduler-ui-next/src/views/projects/workflow/definition/components/import-modal.tsx b/dolphinscheduler-ui-next/src/views/projects/workflow/definition/components/import-modal.tsx
index cd1f529077..9d99edef8e 100644
--- a/dolphinscheduler-ui-next/src/views/projects/workflow/definition/components/import-modal.tsx
+++ b/dolphinscheduler-ui-next/src/views/projects/workflow/definition/components/import-modal.tsx
@@ -89,7 +89,8 @@ export default defineComponent({
           <NFormItem label={t('project.workflow.file_name')} path='name'>
             <NInput
               v-model={[this.importForm.name, 'value']}
-              placeholder={t('project.workflow.enter_name_tips')}
+              placeholder={''}
+              disabled
             />
           </NFormItem>
         </NForm>