mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-05-26 06:01:49 +00:00
fix(kanban): preserve assignee casing in dashboard
This commit is contained in:
parent
40a4bfa719
commit
b308dd7d75
2 changed files with 12 additions and 2 deletions
8
plugins/kanban/dashboard/dist/index.js
vendored
8
plugins/kanban/dashboard/dist/index.js
vendored
|
|
@ -1924,6 +1924,10 @@
|
|||
title: props.columnName === "triage"
|
||||
? "Hermes profile that will spec this task (default: the dispatcher's configured specifier). Leave blank to let the dispatcher pick."
|
||||
: "Hermes profile to assign. Leave blank and the dispatcher will pick from available profiles when the task is Ready.",
|
||||
style: { textTransform: "none" },
|
||||
autoCapitalize: "none",
|
||||
autoCorrect: "off",
|
||||
spellCheck: false,
|
||||
}),
|
||||
h(Input, {
|
||||
type: "number",
|
||||
|
|
@ -2517,6 +2521,10 @@
|
|||
},
|
||||
placeholder: tx(t, "emptyAssignee", "(empty = unassign)"),
|
||||
className: "h-7 text-xs flex-1",
|
||||
style: { textTransform: "none" },
|
||||
autoCapitalize: "none",
|
||||
autoCorrect: "off",
|
||||
spellCheck: false,
|
||||
}),
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue