Skip to content

Commit

Permalink
bugfix:创建任务参数填写输入参数不为空时,会显示空数据提示问题修复 (TencentBlueKing#167)
Browse files Browse the repository at this point in the history
* bugfix:创建任务参数填写输入参数不为空时,会显示空数据提示问题修复 TencentBlueKing#166
  • Loading branch information
luofann authored and pagezz-canway committed Apr 18, 2019
1 parent 105a443 commit ae7bc51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/desktop/src/pages/task/TaskParamEdit.vue
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
}
}
this.isNoData = !!variableArray.length
this.isNoData = !variableArray.length
variableArray = variableArray.sort((a, b) => {
return a.index - b.index
Expand Down

0 comments on commit ae7bc51

Please sign in to comment.