fix: operator should be IN for top level operations (#2304)

This commit is contained in:
Srikanth Chekuri 2023-02-22 12:10:32 +05:30 committed by GitHub
parent 9f71e732c7
commit 23490ca7f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,7 +26,7 @@ export const operationPerSec = ({
{ {
id: '', id: '',
key: 'operation', key: 'operation',
op: 'MATCH', op: 'IN',
value: topLevelOperations, value: topLevelOperations,
}, },
...tagFilterItems, ...tagFilterItems,
@ -56,7 +56,7 @@ export const errorPercentage = ({
{ {
id: '', id: '',
key: 'operation', key: 'operation',
op: 'MATCH', op: 'IN',
value: topLevelOperations, value: topLevelOperations,
}, },
{ {
@ -78,7 +78,7 @@ export const errorPercentage = ({
{ {
id: '', id: '',
key: 'operation', key: 'operation',
op: 'MATCH', op: 'IN',
value: topLevelOperations, value: topLevelOperations,
}, },
...tagFilterItems, ...tagFilterItems,