feat: sub-category field for tasks #88
Labels
No labels
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
track:api
track:auto
track:core
track:deploy
track:infra
track:ui
v0.1.0
v0.1.1
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
barrettruth/delta#88
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
Categories are broad groupings (UVA, personal, work) but lack granularity. A task in UVA might be for RUTR 2730, CS 3100, or general admin — no way to distinguish.
Solution
Add a `subcategory` text field to tasks. Renders in bracket notation `[RUTR 2730]` alongside category. Filterable via sidebar and URL params, searchable via `/`. Autocomplete from existing values in the create drawer and task detail.
This is NOT a multi-tag system — one subcategory per task, just like category. Stored as a nullable text column on `tasks`.
Schema
```
subcategory: text("subcategory")
```
Rendering
Filtering
UI