feat: add value prop

This commit is contained in:
Shivam Mishra
2023-05-17 15:29:31 +05:30
parent d67c541943
commit 1db4850a5d
@@ -5,6 +5,7 @@ import {
} from 'dashboard/routes/dashboard/settings/automation/operators';
import filterQueryGenerator from './filterQueryGenerator';
import actionQueryGenerator from './actionQueryGenerator';
const MESSAGE_CONDITION_VALUES = [
{
id: 'incoming',
@@ -19,22 +20,27 @@ const MESSAGE_CONDITION_VALUES = [
export const PRIORITY_CONDITION_VALUES = [
{
id: 'nil',
value: null,
name: 'None',
},
{
id: 'low',
value: 'low',
name: 'Low',
},
{
id: 'medium',
value: 'medium',
name: 'Medium',
},
{
id: 'high',
value: 'high',
name: 'High',
},
{
id: 'urgent',
value: 'urgent',
name: 'Urgent',
},
];