(value: string, order: number)
| 7 | } from "../../../src/modals/taskModalActionValues"; |
| 8 | |
| 9 | function status(value: string, order: number): StatusConfig { |
| 10 | return { |
| 11 | id: value, |
| 12 | value, |
| 13 | label: value, |
| 14 | color: "", |
| 15 | order, |
| 16 | isCompleted: false, |
| 17 | autoArchive: false, |
| 18 | autoArchiveDelay: 0, |
| 19 | }; |
| 20 | } |
| 21 | |
| 22 | function priority(value: string, weight: number): PriorityConfig { |
| 23 | return { |
no outgoing calls
no test coverage detected