added task size management features and fixed trash recover feature
This commit is contained in:
@@ -35,3 +35,17 @@ export const URGENCY_HOURS: Record<number, number> = {
|
||||
2: 2160,
|
||||
1: 4320
|
||||
};
|
||||
|
||||
export const SIZE_OPTIONS = [
|
||||
{ value: "10", label: "10 - Huge" },
|
||||
{ value: "9", label: "9" },
|
||||
{ value: "8", label: "8" },
|
||||
{ value: "7", label: "7" },
|
||||
{ value: "6", label: "6" },
|
||||
{ value: "5", label: "5" },
|
||||
{ value: "4", label: "4" },
|
||||
{ value: "3", label: "3" },
|
||||
{ value: "2", label: "2" },
|
||||
{ value: "1", label: "1" },
|
||||
{ value: "0", label: "0 - Tiny" }
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user