Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions plugins/kanban/dashboard/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1593,10 +1593,12 @@
saveSettings({ auto_decompose: !!e.target.checked });
},
}),
settings.auto_decompose ? "Auto (default)" : "Manual",
"Auto-decompose triage tasks",
),
h("div", { className: "text-[10px] text-muted-foreground" },
"When on, the dispatcher decomposes new triage tasks automatically."),
settings.auto_decompose
? "The dispatcher decomposes new triage tasks automatically."
: "Triage tasks stay in triage until you click ⚗ Decompose."),
),
) : h("div", { className: "text-xs text-muted-foreground" },
"Loading…"),
Expand Down
Loading