fix(接口定义): 修复回收站场景列表筛选不起作用的缺陷 (#17694)

--bug=1016579 --user=王孝刚 [接口测试]github#17662接口自动化-回收站字段筛选不起作用
https://www.tapd.cn/55049933/s/1239289

Co-authored-by: wxg0103 <727495428@qq.com>
This commit is contained in:
MeterSphere Bot 2022-09-06 15:41:43 +08:00 committed by GitHub
parent c1a7043568
commit bd8e92c465
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -714,7 +714,7 @@ export default {
this.selectRows = new Set(); this.selectRows = new Set();
this.condition.moduleIds = this.selectNodeIds; this.condition.moduleIds = this.selectNodeIds;
if (this.trashEnable) { if (this.trashEnable) {
this.condition.filters = {status: ["Trash"]}; this.condition.filters = {...this.condition.filters, status: ["Trash"]}
this.condition.moduleIds = []; this.condition.moduleIds = [];
} }