From 221519a0e31095b2d90666686849533dfe8dd914 Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Sat, 24 May 2025 18:12:14 +0200 Subject: [PATCH] Formatting --- app/MindWork AI Studio/Chat/ChatThread.cs | 1 + .../Components/Settings/SettingsPanelChatTemplates.razor.cs | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/app/MindWork AI Studio/Chat/ChatThread.cs b/app/MindWork AI Studio/Chat/ChatThread.cs index 406ff3ba..8f506f61 100644 --- a/app/MindWork AI Studio/Chat/ChatThread.cs +++ b/app/MindWork AI Studio/Chat/ChatThread.cs @@ -120,6 +120,7 @@ public sealed record ChatThread } } } + logger.LogInformation(logMessage); // diff --git a/app/MindWork AI Studio/Components/Settings/SettingsPanelChatTemplates.razor.cs b/app/MindWork AI Studio/Components/Settings/SettingsPanelChatTemplates.razor.cs index ba494cb8..30abfe54 100644 --- a/app/MindWork AI Studio/Components/Settings/SettingsPanelChatTemplates.razor.cs +++ b/app/MindWork AI Studio/Components/Settings/SettingsPanelChatTemplates.razor.cs @@ -37,8 +37,8 @@ public partial class SettingsPanelChatTemplates : SettingsPanelBase { x => x.DataName, chatTemplate.Name }, { x => x.DataSystemPrompt, chatTemplate.SystemPrompt }, { x => x.IsEditing, true }, - {x => x.ExampleConversation, chatTemplate.ExampleConversation}, - {x => x.AllowProfileUsage, chatTemplate.AllowProfileUsage}, + { x => x.ExampleConversation, chatTemplate.ExampleConversation }, + { x => x.AllowProfileUsage, chatTemplate.AllowProfileUsage }, }; var dialogReference = await this.DialogService.ShowAsync(T("Edit Chat Template"), dialogParameters, DialogOptions.FULLSCREEN);