mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
69e110f4a8
* style: project card UI updated * dev: initialize project filter store and types * chore: implemented filtering logic * chore: implemented ordering * chore: my projects filter added * chore: update created at date filter options * refactor: order by dropdown * style: revert project card UI * fix: project card z-index * fix: members filtering * fix: build errors
34 lines
609 B
TypeScript
34 lines
609 B
TypeScript
export const DATE_AFTER_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",
|
|
},
|
|
];
|
|
|
|
export const DATE_BEFORE_FILTER_OPTIONS = [
|
|
{
|
|
name: "1 week ago",
|
|
value: "1_weeks;before;fromnow",
|
|
},
|
|
{
|
|
name: "2 weeks ago",
|
|
value: "2_weeks;before;fromnow",
|
|
},
|
|
{
|
|
name: "1 month ago",
|
|
value: "1_months;before;fromnow",
|
|
},
|
|
];
|