Fixed calling the workspace selection dialog

This commit is contained in:
Thorsten Sommer 2025-08-31 14:44:17 +02:00
parent 2a01d3bb6e
commit 7364dccde4
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -709,7 +709,7 @@ public partial class ChatComponent : MSGComponentBase, IAsyncDisposable
var dialogParameters = new DialogParameters<WorkspaceSelectionDialog>
{
{ 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") },
};