(field, value string, r *lipgloss.Renderer)
| 382 | } |
| 383 | |
| 384 | func colorizeFieldValue(field, value string, r *lipgloss.Renderer) string { |
| 385 | switch field { |
| 386 | case "status": |
| 387 | return formatStatus(value, r) |
| 388 | case "priority": |
| 389 | return formatPriority(value, r) |
| 390 | case "effort": |
| 391 | return formatEffort(value, r) |
| 392 | default: |
| 393 | return value |
| 394 | } |
| 395 | } |
| 396 | |
| 397 | // runSetVerification runs verify checks if --verify is set and status is being set to completed. |
| 398 | func runSetVerification(task *model.Task, req taskfile.UpdateRequest) error { |
no test coverage detected