mirror of
https://github.com/anomalyco/opencode.git
synced 2026-04-28 12:39:43 +00:00
fix(session): subagents not being clickable (#20263)
This commit is contained in:
parent
2cc738fb17
commit
befbedacdc
1 changed files with 1 additions and 1 deletions
|
|
@ -403,7 +403,7 @@ NOTE: At any point in time through this workflow you should feel free to ask the
|
||||||
Effect.runPromise(
|
Effect.runPromise(
|
||||||
Effect.gen(function* () {
|
Effect.gen(function* () {
|
||||||
const match = input.processor.partFromToolCall(options.toolCallId)
|
const match = input.processor.partFromToolCall(options.toolCallId)
|
||||||
if (!match || match.state.status !== "running") return
|
if (!match || !["running", "pending"].includes(match.state.status)) return
|
||||||
yield* sessions.updatePart({
|
yield* sessions.updatePart({
|
||||||
...match,
|
...match,
|
||||||
state: {
|
state: {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue