mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-22 11:18:14 +00:00
fix(ui): narrow submitted progress status
This commit is contained in:
@@ -95,7 +95,7 @@ function isCurrentSessionSubmittedProgress(
|
||||
item.sessionKey === sessionKey &&
|
||||
!item.pendingRunId &&
|
||||
(item.sendState === "sending" || item.sendState === "waiting-model") &&
|
||||
(!hasTerminalRunStatus(status) || item.sendRunId !== status.runId)
|
||||
(status == null || item.sendRunId !== status.runId)
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user