feat(FN-1638): add plugin manager UI redesign and clear triage status on todo

- Restructure PluginManager detail view with card-based layout
- Add mobile responsive styles with adaptive grid
- Add desktop CSS with card-based grid design
- Clear triage status when task moves to todo
- Add changeset for plugin settings design
This commit is contained in:
gsxdsm
2026-04-14 07:51:33 -07:00
parent 3b1b6463af
commit 1b576fbfb3
7 changed files with 219 additions and 214 deletions

View File

@@ -1652,22 +1652,6 @@ export class TaskStore extends EventEmitter<TaskStoreEvents> {
task.blockedBy = undefined;
}
// Moving a task out of triage is a manual approval/override path. Clear
// triage-only control statuses so the todo card is ready for execution
// instead of continuing to look like an active specification job.
if (
fromColumn === "triage"
&& toColumn === "todo"
&& (
task.status === "specifying"
|| task.status === "awaiting-approval"
|| task.status === "needs-respecify"
)
) {
task.status = undefined;
task.error = undefined;
}
// Clear recovery metadata when task reaches in-review (successful completion)
if (toColumn === "in-review") {
task.recoveryRetryCount = undefined;