Skip to content

Commit f61fe87

Browse files
Fixed calling the workspace selection dialog (#547)
1 parent 2a01d3b commit f61fe87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/MindWork AI Studio/Components/ChatComponent.razor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -709,7 +709,7 @@ private async Task MoveChatToWorkspace()
709709
var dialogParameters = new DialogParameters<WorkspaceSelectionDialog>
710710
{
711711
{ x => x.Message, T("Please select the workspace where you want to move the chat to.") },
712-
{ x => x.SelectedWorkspace, this.ChatThread?.WorkspaceId },
712+
{ x => x.SelectedWorkspace, this.ChatThread?.WorkspaceId ?? Guid.Empty },
713713
{ x => x.ConfirmText, T("Move chat") },
714714
};
715715

0 commit comments

Comments
 (0)