mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
479c145b02
* refactor: filters and display filters to accept handlers as props * refactor: filters and display filters folder structure * refactor: change issue layout options constant structure * chore: display filters validations * chore: view less filters functionality * fix: display filters validation * refactor: wrap functions around useCallback * chore: start and target date filter options added * refactor: query params generator function * fix: query params generator function
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",
|
|
},
|
|
];
|