Fixed the missed workspace title when loading the today's bias

This commit is contained in:
Thorsten Sommer 2024-11-16 11:58:22 +01:00
parent 9f718215ea
commit 0b5c078c39
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108
2 changed files with 6 additions and 0 deletions

View File

@ -124,6 +124,10 @@ public partial class Chat : MSGComponentBase, IAsyncDisposable
{ {
this.mustLoadChat = false; this.mustLoadChat = false;
this.chatThread = await WorkspaceBehaviour.LoadChat(this.loadChat); this.chatThread = await WorkspaceBehaviour.LoadChat(this.loadChat);
if(this.chatThread is not null)
this.currentWorkspaceName = await WorkspaceBehaviour.LoadWorkspaceName(this.chatThread.WorkspaceId);
this.StateHasChanged(); this.StateHasChanged();
} }

View File

@ -0,0 +1,2 @@
# v0.9.21, build 196 (2024-11-1x xx:xx UTC)
- Fixed the missed workspace title when loading the today's bias.