From 17052113f5c029a9fd2c5f045e8bc55d04ecbae4 Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Wed, 17 May 2023 16:37:25 +0530 Subject: [PATCH] revert: priority conditions change --- app/javascript/dashboard/helper/automationHelper.js | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/app/javascript/dashboard/helper/automationHelper.js b/app/javascript/dashboard/helper/automationHelper.js index 40e2b4c6e..1a907155e 100644 --- a/app/javascript/dashboard/helper/automationHelper.js +++ b/app/javascript/dashboard/helper/automationHelper.js @@ -19,28 +19,23 @@ const MESSAGE_CONDITION_VALUES = [ export const PRIORITY_CONDITION_VALUES = [ { - id: 'null', - value: null, + id: 'nil', 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', }, ];