forked from github/plane
19 lines
342 B
TypeScript
19 lines
342 B
TypeScript
export const DATE_FILTER_OPTIONS = [
|
|
{
|
|
name: "1 week from now",
|
|
value: "1_weeks;after;fromnow",
|
|
},
|
|
{
|
|
name: "2 weeks from now",
|
|
value: "2_weeks;after;fromnow",
|
|
},
|
|
{
|
|
name: "1 month from now",
|
|
value: "1_months;after;fromnow",
|
|
},
|
|
{
|
|
name: "2 months from now",
|
|
value: "2_months;after;fromnow",
|
|
},
|
|
];
|