From f1f0775174dc893fe72ae3145825309af17ab65a Mon Sep 17 00:00:00 2001 From: Shenoy Pratik Date: Tue, 23 Jan 2024 02:43:22 +0530 Subject: [PATCH] add minutes as time option (#249) Signed-off-by: Shenoy Pratik --- common/constants/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/common/constants/index.ts b/common/constants/index.ts index 2f04ad9d..260eeade 100644 --- a/common/constants/index.ts +++ b/common/constants/index.ts @@ -72,6 +72,7 @@ export const ACCELERATION_AGGREGRATION_FUNCTIONS = [ export const ACCELERATION_TIME_INTERVAL = [ { text: 'millisecond(s)', value: 'millisecond' }, { text: 'second(s)', value: 'second' }, + { text: 'minutes(s)', value: 'minute' }, { text: 'hour(s)', value: 'hour' }, { text: 'day(s)', value: 'day' }, { text: 'week(s)', value: 'week' },