diff options
| author | Ben Sima <ben@bensima.com> | 2025-12-01 13:51:21 -0500 |
|---|---|---|
| committer | Ben Sima <ben@bensima.com> | 2025-12-01 13:51:21 -0500 |
| commit | 7e03d8f323d44b972aeceb009928c977ee64fed2 (patch) | |
| tree | 49ee87005e6ff5bd0716304ea66bbd497f06b0f6 /Omni/Jr/Web | |
| parent | 0873611b69284384ee441d6f236b6455e0d41e2b (diff) | |
Replace HumanTask type with NeedsHelp status
- Remove HumanTask from TaskType enum (now Epic | WorkTask only)
- Add NeedsHelp to Status enum for tasks requiring human guidance
- Update getReadyTasks to filter NeedsHelp instead of HumanTask
- Rename humanTasks to tasksNeedingHelp in HumanActionItems
- Add CLI parsing for needs-help status in list/update commands
- Add badge styling for NeedsHelp (amber/yellow theme)
- Update all status pattern matches in tree view and print functions
- Update tests to verify NeedsHelp exclusion from ready queue
Task-Id: t-210
Diffstat (limited to 'Omni/Jr/Web')
| -rw-r--r-- | Omni/Jr/Web/Style.hs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Omni/Jr/Web/Style.hs b/Omni/Jr/Web/Style.hs index 08fda5d..9a0c12d 100644 --- a/Omni/Jr/Web/Style.hs +++ b/Omni/Jr/Web/Style.hs @@ -584,6 +584,9 @@ statusBadges = do ".badge-done" ? do backgroundColor "#d1fae5" color "#065f46" + ".badge-needshelp" ? do + backgroundColor "#fef3c7" + color "#92400e" ".status-badge-dropdown" ? do position relative display inlineBlock @@ -1864,6 +1867,9 @@ darkModeStyles = ".badge-done" ? do backgroundColor "#064e3b" color "#6ee7b7" + ".badge-needshelp" ? do + backgroundColor "#78350f" + color "#fcd34d" ".badge-p0" ? do backgroundColor "#7f1d1d" color "#fca5a5" |
