From f61fe87181a7bd3e8ee6f2b264e0d531ff95a1ae Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Sun, 31 Aug 2025 14:45:03 +0200 Subject: [PATCH] Fixed calling the workspace selection dialog (#547) --- app/MindWork AI Studio/Components/ChatComponent.razor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/MindWork AI Studio/Components/ChatComponent.razor.cs b/app/MindWork AI Studio/Components/ChatComponent.razor.cs index 96481bc5..e75e0ca9 100644 --- a/app/MindWork AI Studio/Components/ChatComponent.razor.cs +++ b/app/MindWork AI Studio/Components/ChatComponent.razor.cs @@ -709,7 +709,7 @@ public partial class ChatComponent : MSGComponentBase, IAsyncDisposable var dialogParameters = new DialogParameters { { x => x.Message, T("Please select the workspace where you want to move the chat to.") }, - { x => x.SelectedWorkspace, this.ChatThread?.WorkspaceId }, + { x => x.SelectedWorkspace, this.ChatThread?.WorkspaceId ?? Guid.Empty }, { x => x.ConfirmText, T("Move chat") }, };