fixed urgency-date connection and added urgency-date guidance. fixed password extension break. fixed template saving.
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
export const PRIORITY_OPTIONS = [
|
||||
{ value: "10", label: "10 - Necessary" },
|
||||
{ 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 - Trivial" }
|
||||
];
|
||||
|
||||
export const URGENCY_OPTIONS = [
|
||||
{ value: "10", label: "10 - Today" },
|
||||
{ value: "9", label: "9 - Tomorrow Morning" },
|
||||
{ value: "8", label: "8 - EOD Tomorrow" },
|
||||
{ value: "7", label: "7 - Half-Week" },
|
||||
{ value: "6", label: "6 - This Week/5 Days" },
|
||||
{ value: "5", label: "5 - Next Week/10 Days" },
|
||||
{ value: "4", label: "4 - 3 Weeks" },
|
||||
{ value: "3", label: "3 - 6 Weeks" },
|
||||
{ value: "2", label: "2 - 3 Months" },
|
||||
{ value: "1", label: "1 - 6 Months" }
|
||||
];
|
||||
export const URGENCY_HOURS: Record<number, number> = {
|
||||
10: 12,
|
||||
9: 24,
|
||||
8: 36,
|
||||
7: 72,
|
||||
6: 120,
|
||||
5: 240,
|
||||
4: 504,
|
||||
3: 1080,
|
||||
2: 2160,
|
||||
1: 4320
|
||||
};
|
||||
Reference in New Issue
Block a user