fix pipeline stop, jobs link navigation, and seed quote stripping

- Fix stop: abort poll now rejects the promise after killing the agent process
- Fix jobs link: close modal before navigating, use react-router navigate
- Fix seed parser: strip quotes from step input values (delete_source: "true")

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-10 05:32:35 +00:00
co-authored by Claude Opus 4.6
parent 53c78c76cb
commit ef6402a827
3 changed files with 11 additions and 12 deletions
+2 -1
View File
@@ -140,7 +140,8 @@ function parseFrontmatter(content: string) {
// Step input entries (6 spaces)
const inputMatch = line.match(/^\s{6}(\w[\w_-]*):\s*(.+)$/);
if (inputMatch && inInputs) {
stepInputs[inputMatch[1]!] = inputMatch[2]!.trim();
const raw = inputMatch[2]!.trim();
stepInputs[inputMatch[1]!] = raw.replace(/^["'](.*)["']$/, '$1');
}
}
if (currentStep) {