You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by le...@apache.org on 2019/12/12 06:08:51 UTC

[incubator-dolphinscheduler] branch dev updated: change maxlength from 128 to 256 (#1451)

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

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


The following commit(s) were added to refs/heads/dev by this push:
     new 0a8b6bc  change maxlength from 128 to 256 (#1451)
0a8b6bc is described below

commit 0a8b6bcb81304a79deb973a70f23bbc5ec105d4b
Author: zhukai <bo...@qq.com>
AuthorDate: Thu Dec 12 14:08:35 2019 +0800

    change maxlength from 128 to 256 (#1451)
---
 .../home/pages/dag/_source/formModel/tasks/_source/localParams.vue    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/formModel/tasks/_source/localParams.vue b/dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/formModel/tasks/_source/localParams.vue
index 52fd466..69d181e 100644
--- a/dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/formModel/tasks/_source/localParams.vue
+++ b/dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/formModel/tasks/_source/localParams.vue
@@ -25,7 +25,7 @@
               type="text"
               v-model="localParamsList[$index].prop"
               :placeholder="$t('prop(required)')"
-              maxlength="128"
+              maxlength="256"
               @on-blur="_verifProp()"
               :style="inputStyle">
       </x-input>
@@ -60,7 +60,7 @@
               type="text"
               v-model="localParamsList[$index].value"
               :placeholder="$t('value(optional)')"
-              maxlength="128"
+              maxlength="256"
               @on-blur="_handleValue()"
               :style="inputStyle">
       </x-input>