From 3ac5602296eb1f881bae677857bf95c06948ece8 Mon Sep 17 00:00:00 2001 From: gary <408036296@163.com> Date: Mon, 30 Sep 2019 16:30:04 +0800 Subject: [PATCH] [Enhancement] increase param length limit (#930) Sometimes the parameters are longer(eg. HDFS path). Increased to 128(t_escheduler_process_definition.global_params is text and process_definition_json is longtext). --- .../pages/dag/_source/formModel/tasks/_source/localParams.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/escheduler-ui/src/js/conf/home/pages/dag/_source/formModel/tasks/_source/localParams.vue b/escheduler-ui/src/js/conf/home/pages/dag/_source/formModel/tasks/_source/localParams.vue index bf43da9459..52fd4668a0 100644 --- a/escheduler-ui/src/js/conf/home/pages/dag/_source/formModel/tasks/_source/localParams.vue +++ b/escheduler-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="64" + maxlength="128" @on-blur="_verifProp()" :style="inputStyle"> @@ -60,7 +60,7 @@ type="text" v-model="localParamsList[$index].value" :placeholder="$t('value(optional)')" - maxlength="64" + maxlength="128" @on-blur="_handleValue()" :style="inputStyle">