2023-08-24 14:15:23 +00:00
|
|
|
export const DATE_FILTER_OPTIONS = [
|
2023-07-04 17:43:07 +00:00
|
|
|
{
|
2023-12-04 06:41:36 +00:00
|
|
|
name: "1 week from now",
|
|
|
|
value: "1_weeks;after;fromnow",
|
2023-07-04 17:43:07 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "2 weeks from now",
|
2023-12-04 06:41:36 +00:00
|
|
|
value: "2_weeks;after;fromnow",
|
2023-07-04 17:43:07 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "1 month from now",
|
2023-12-04 06:41:36 +00:00
|
|
|
value: "1_months;after;fromnow",
|
2023-07-04 17:43:07 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "2 months from now",
|
2023-12-04 06:41:36 +00:00
|
|
|
value: "2_months;after;fromnow",
|
2023-07-04 17:43:07 +00:00
|
|
|
},
|
|
|
|
];
|