openreplay/frontend/app/constants/alertConditions.js
2021-05-01 15:12:01 +05:30

6 lines
178 B
JavaScript

export default [
{ value: '>', text: 'above' },
{ value: '>=', text: 'above or equal to' },
{ value: '<', text: 'below' },
{ value: '<=', text: 'below or equal to' },
];