Browse Source

fix 5764 应用异常搜索栏输入项目搜索无效

dev
巴林闲侠 2 years ago
parent
commit
6bf3e45fa1
  1. 4
      api/app/lib/controllers/alarm/app.js

4
api/app/lib/controllers/alarm/app.js

@ -254,6 +254,10 @@ async function apiErrorList (ctx) {
'$app->projectCorrelations.pep_project_id$': {
$in: projectRes.map(p => p.id)
},
}
)
findOption.where.$or.push(
{
'$app.name$': { $like: `%${keyword}%` }
}
)

Loading…
Cancel
Save