From ae7bc51aa2e01225371b401810135cbc3383e5ae Mon Sep 17 00:00:00 2001 From: Luo Fan <44999219+fannluo@users.noreply.github.com> Date: Thu, 18 Apr 2019 15:34:00 +0800 Subject: [PATCH] =?UTF-8?q?bugfix=EF=BC=9A=E5=88=9B=E5=BB=BA=E4=BB=BB?= =?UTF-8?q?=E5=8A=A1=E5=8F=82=E6=95=B0=E5=A1=AB=E5=86=99=E8=BE=93=E5=85=A5?= =?UTF-8?q?=E5=8F=82=E6=95=B0=E4=B8=8D=E4=B8=BA=E7=A9=BA=E6=97=B6=EF=BC=8C?= =?UTF-8?q?=E4=BC=9A=E6=98=BE=E7=A4=BA=E7=A9=BA=E6=95=B0=E6=8D=AE=E6=8F=90?= =?UTF-8?q?=E7=A4=BA=E9=97=AE=E9=A2=98=E4=BF=AE=E5=A4=8D=20(#167)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * bugfix:创建任务参数填写输入参数不为空时,会显示空数据提示问题修复 #166 --- frontend/desktop/src/pages/task/TaskParamEdit.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/desktop/src/pages/task/TaskParamEdit.vue b/frontend/desktop/src/pages/task/TaskParamEdit.vue index 6e41c691a8..8eb32f8e7c 100644 --- a/frontend/desktop/src/pages/task/TaskParamEdit.vue +++ b/frontend/desktop/src/pages/task/TaskParamEdit.vue @@ -97,7 +97,7 @@ } } - this.isNoData = !!variableArray.length + this.isNoData = !variableArray.length variableArray = variableArray.sort((a, b) => { return a.index - b.index