feat(KB-155): fix dropdown search reset in TaskDetailModal

- Fix search input state not resetting when task detail modal reopens
- Remove obsolete mobile input font size test file
- Clean up stale changeset for PTY loading fix
- Update terminal service error handling
- Remove test artifacts and temporary KB-* directories
This commit is contained in:
gsxdsm
2026-03-30 08:40:13 -07:00
parent c1c38aa7df
commit fb0846fc17

View File

@@ -829,7 +829,10 @@ export function TaskDetailModal({
<button
type="button"
className="btn btn-sm dep-trigger"
onClick={() => setShowDepDropdown((v) => !v)}
onClick={() => {
if (showDepDropdown) setDepSearch("");
setShowDepDropdown((v) => !v);
}}
>
Add Dependency
</button>