From 40067e0957ac1487942b84dce2f0c54fd8c3c963 Mon Sep 17 00:00:00 2001 From: Lyon <88232613+pikasTech@users.noreply.github.com> Date: Tue, 16 Jun 2026 09:33:53 +0800 Subject: [PATCH] fix: always hydrate routed workbench sessions (#1321) --- web/hwlab-cloud-web/src/views/workbench/CodeWorkbenchView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/hwlab-cloud-web/src/views/workbench/CodeWorkbenchView.vue b/web/hwlab-cloud-web/src/views/workbench/CodeWorkbenchView.vue index 55a0efca..90ed190f 100644 --- a/web/hwlab-cloud-web/src/views/workbench/CodeWorkbenchView.vue +++ b/web/hwlab-cloud-web/src/views/workbench/CodeWorkbenchView.vue @@ -31,7 +31,7 @@ useAutoRefresh(() => workbench.refreshLive(), 30_000); async function applyRouteConversation(): Promise { const conversationId = routeConversationId.value; - if (!conversationId || workbench.activeConversationId === conversationId) return true; + if (!conversationId) return true; applyingRouteConversation.value = true; try { return await workbench.selectConversationById(conversationId);