fix 字典修改

This commit is contained in:
zyxucp
2024-03-09 12:15:32 +08:00
parent cdb41023d4
commit 6852b458fa
2 changed files with 3 additions and 3 deletions

View File

@@ -264,7 +264,7 @@ namespace AntSK.Pages.ChatPage
}
else
{
info.HtmlAnswers += content.Content;
info.HtmlAnswers += content.Text;
await Task.Delay(50);
}
await InvokeAsync(StateHasChanged);

View File

@@ -197,7 +197,7 @@ namespace AntSK.Pages.ChatPage
}
else
{
info.HtmlAnswers += content.Content;
info.HtmlAnswers += content.Text;
await Task.Delay(50);
}
await InvokeAsync(StateHasChanged);
@@ -254,7 +254,7 @@ namespace AntSK.Pages.ChatPage
}
else
{
info.HtmlAnswers += content.Content;
info.HtmlAnswers += content.Text;
await Task.Delay(50);
}
await InvokeAsync(StateHasChanged);