Renamed variable

This commit is contained in:
Thorsten Sommer 2025-08-09 21:26:10 +02:00
parent 2f47cc69a7
commit 8bec202278
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -58,7 +58,7 @@ public partial class About : MSGComponentBase
private GetLogPathsResponse logPaths; private GetLogPathsResponse logPaths;
private bool showConfigDetails = false; private bool showEnterpriseConfigDetails = false;
private IPluginMetadata? configPlug = PluginFactory.AvailablePlugins.FirstOrDefault(x => x.Type is PluginType.CONFIGURATION); private IPluginMetadata? configPlug = PluginFactory.AvailablePlugins.FirstOrDefault(x => x.Type is PluginType.CONFIGURATION);
@ -157,7 +157,7 @@ public partial class About : MSGComponentBase
this.configPlug = PluginFactory.AvailablePlugins.FirstOrDefault(x => x.Type is PluginType.CONFIGURATION); this.configPlug = PluginFactory.AvailablePlugins.FirstOrDefault(x => x.Type is PluginType.CONFIGURATION);
this.currentEnvironment = EnterpriseEnvironmentService.CURRENT_ENVIRONMENT; this.currentEnvironment = EnterpriseEnvironmentService.CURRENT_ENVIRONMENT;
this.showConfigDetails = !this.showConfigDetails; this.showEnterpriseConfigDetails = !this.showEnterpriseConfigDetails;
} }
private async Task CopyStartupLogPath() private async Task CopyStartupLogPath()