We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72a59ba commit 5243d74Copy full SHA for 5243d74
Flow.Launcher/SearchDelayTimeWindow.xaml.cs
@@ -28,7 +28,7 @@ private void SearchDelayTimeWindow_OnLoaded(object sender, RoutedEventArgs e)
28
selected = searchDelayTimes.FirstOrDefault(x => x.Value == _pluginViewModel.PluginSearchDelayTime);
29
}
30
// Add default value to the beginning of the list
31
- // When _pluginViewModel.PluginSearchDelay equals null, we will select this
+ // When _pluginViewModel.PluginSearchDelayTime equals null, we will select this
32
searchDelayTimes.Insert(0, new SearchDelayTimeData { Display = App.API.GetTranslation("default"), LocalizationKey = "default" });
33
selected ??= searchDelayTimes.FirstOrDefault();
34
tbDelay.ItemsSource = searchDelayTimes;
0 commit comments