Skip to content

Commit

Permalink
fix(系统日志): 日志级别多选查询条件
Browse files Browse the repository at this point in the history
多个选项值使用逗号分割

fix #https://gitee.com/jetlinks/dashboard?issue_id=I240YJ
  • Loading branch information
Lind-pro committed Nov 5, 2020
1 parent 827de3e commit 00aebe8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/pages/logger/system/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -169,10 +169,11 @@ const SystemLoggerList: React.FC<Props> = props => {
},
{
label: '日志级别',
key: 'level',
key: 'level$IN',
type: 'list',
props: {
data: ['ERROR', 'INFO', 'WARN', 'DEBUG']
data: ['ERROR', 'INFO', 'WARN', 'DEBUG'],
mode: 'multiple'
}
},
{
Expand Down

0 comments on commit 00aebe8

Please sign in to comment.