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);