Skip to content

Commit 33ad4d6

Browse files
committed
chore(deps): update dependence
1 parent 1bf275a commit 33ad4d6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/BootstrapBlazor.Server/Components/Pages/Chats.razor.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ public partial class Chats
2828

2929
private List<AzureOpenAIChatMessage> Messages { get; } = [];
3030

31-
private static string? GetStackClass(ChatRole role) => CssBuilder.Default("msg-stack").AddClass("msg-stack-assistant", role == ChatRole.Assistant).Build();
31+
private static string? GetStackClass(ChatRole role) => CssBuilder.Default("msg-stack")
32+
.AddClass("msg-stack-assistant", role == ChatRole.Assistant)
33+
.Build();
3234

3335
private static readonly ConcurrentDictionary<string, int> _cache = new();
3436

0 commit comments

Comments
 (0)