Commit 2f18fa6e by Joey

fix(@rbc/workflow-job-view): 查询条件values可能为空导致结果不正确的问题

parent b9b84020
......@@ -170,7 +170,7 @@ export default {
conditions.push(condition);
}
}
this.seniorQuery = conditions
this.seniorQuery = conditions.filter((o) => !!o.values)
this.$refs
&& this.$refs.customQuery
&& this.$refs.customQuery.initTemplate
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment