diff --git a/CHANGELOG.md b/CHANGELOG.md index 6157ac382aa..f6796bfb1cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ Docs: https://docs.openclaw.ai - Models/providers: add per-provider `models.providers.*.request.allowPrivateNetwork` for trusted self-hosted OpenAI-compatible endpoints, keep the opt-in scoped to model request surfaces, and refresh cached WebSocket managers when request transport overrides change. (#63671) Thanks @qas. - QA/testing: add a `--runner multipass` lane for `openclaw qa suite` so repo-backed QA scenarios can run inside a disposable Linux VM and write back the usual report, summary, and VM logs. (#63426) Thanks @shakkernerd. - Docs i18n: chunk raw doc translation, reject truncated tagged outputs, avoid ambiguous body-only wrapper unwrapping, and recover from terminated Pi translation sessions without changing the default `openai/gpt-5.4` path. (#62969, #63808) Thanks @hxy91819. +- Control UI/dreaming: simplify the Scene and Diary surfaces, preserve unknown phase state for partial status payloads, and stabilize waiting-entry recency ordering so Dreaming status and review lists stay clear and deterministic. (#64035) Thanks @davemorin. ### Fixes diff --git a/ui/src/styles/dreams.css b/ui/src/styles/dreams.css index bc779627504..812b872af80 100644 --- a/ui/src/styles/dreams.css +++ b/ui/src/styles/dreams.css @@ -695,13 +695,12 @@ min-width: 0; padding-bottom: 14px; margin-bottom: 10px; - background: - linear-gradient( - 180deg, - color-mix(in oklab, var(--bg) 98%, transparent) 0%, - color-mix(in oklab, var(--bg) 94%, transparent) 72%, - color-mix(in oklab, var(--bg) 0%, transparent) 100% - ); + background: linear-gradient( + 180deg, + color-mix(in oklab, var(--bg) 98%, transparent) 0%, + color-mix(in oklab, var(--bg) 94%, transparent) 72%, + color-mix(in oklab, var(--bg) 0%, transparent) 100% + ); } .dreams-diary__header { @@ -815,7 +814,10 @@ cursor: pointer; text-align: center; white-space: nowrap; - transition: border-color 140ms ease, color 140ms ease, background 140ms ease; + transition: + border-color 140ms ease, + color 140ms ease, + background 140ms ease; } .dreams-diary__day-chip:hover {