From 8bec2022784ff163b43071cb9c85e905ea4586ea Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Sat, 9 Aug 2025 21:26:10 +0200 Subject: [PATCH] Renamed variable --- app/MindWork AI Studio/Pages/About.razor.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/MindWork AI Studio/Pages/About.razor.cs b/app/MindWork AI Studio/Pages/About.razor.cs index c0119e1a..8c1aabca 100644 --- a/app/MindWork AI Studio/Pages/About.razor.cs +++ b/app/MindWork AI Studio/Pages/About.razor.cs @@ -58,10 +58,10 @@ public partial class About : MSGComponentBase private GetLogPathsResponse logPaths; - private bool showConfigDetails = false; - + private bool showEnterpriseConfigDetails = false; + private IPluginMetadata? configPlug = PluginFactory.AvailablePlugins.FirstOrDefault(x => x.Type is PluginType.CONFIGURATION); - + private EnterpriseEnvironment currentEnvironment = EnterpriseEnvironmentService.CURRENT_ENVIRONMENT; /// @@ -156,8 +156,8 @@ public partial class About : MSGComponentBase // can configPlug and currentEnvironment change? this.configPlug = PluginFactory.AvailablePlugins.FirstOrDefault(x => x.Type is PluginType.CONFIGURATION); this.currentEnvironment = EnterpriseEnvironmentService.CURRENT_ENVIRONMENT; - - this.showConfigDetails = !this.showConfigDetails; + + this.showEnterpriseConfigDetails = !this.showEnterpriseConfigDetails; } private async Task CopyStartupLogPath()