fix(webui): keep actions hidden while turn id resolves

This commit is contained in:
Xubin Ren
2026-08-16 00:14:42 +08:00
parent 48126f049d
commit 50391b2fb7
2 changed files with 22 additions and 1 deletions
@@ -147,7 +147,7 @@ export function ThreadMessages({
unit.type === "activity"
? liveActivityClusterIndices.has(index)
: isStreaming && (
unit.message.turnId
unit.message.turnId && activeTurnId !== null
? unit.message.turnId === activeTurnId
: index > currentTurnStartIndex
)