From 104e203cf6f5ba951d3d1dab3e61553499662260 Mon Sep 17 00:00:00 2001 From: jschick04 Date: Mon, 29 May 2023 22:08:29 -0500 Subject: [PATCH] Fixed wrong merge conflict fix --- src/EventLogExpert/MainPage.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EventLogExpert/MainPage.xaml.cs b/src/EventLogExpert/MainPage.xaml.cs index 56d46683..cdddbf4e 100644 --- a/src/EventLogExpert/MainPage.xaml.cs +++ b/src/EventLogExpert/MainPage.xaml.cs @@ -35,7 +35,7 @@ public MainPage(IDispatcher fluxorDispatcher, activeLogsState.Select(e => e.ActiveLogs); activeLogsState.SelectedValueChanged += (sender, activeLogs) => - Utils.UpdateAppTitle(string.Join(" ", activeLogs.Select(l => l.Name))); + Utils.UpdateAppTitle(string.Join(" ", activeLogs.Values.Select(l => l.Name))); continuouslyUpdateState.Select(e => e.ContinuouslyUpdate);