(value: string, weight: number, label = value)
| 23 | } |
| 24 | |
| 25 | function priority(value: string, weight: number, label = value): PriorityConfig { |
| 26 | return { |
| 27 | id: value, |
| 28 | value, |
| 29 | label, |
| 30 | color: "", |
| 31 | weight, |
| 32 | }; |
| 33 | } |
| 34 | |
| 35 | function createStateInput( |
| 36 | overrides: Partial<TaskModalActionStateInput> = {} |
no outgoing calls
no test coverage detected