From c1355689404f585c3dd8c5ff5eec2f6f7c658357 Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Sat, 15 Feb 2025 15:38:52 +0100 Subject: [PATCH] Fixed a bug when loading an old chat first & the data selection component showed the loading animation --- app/MindWork AI Studio/Components/DataSourceSelection.razor.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/app/MindWork AI Studio/Components/DataSourceSelection.razor.cs b/app/MindWork AI Studio/Components/DataSourceSelection.razor.cs index a2eeca8b..7b75bbd4 100644 --- a/app/MindWork AI Studio/Components/DataSourceSelection.razor.cs +++ b/app/MindWork AI Studio/Components/DataSourceSelection.razor.cs @@ -136,6 +136,7 @@ public partial class DataSourceSelection : ComponentBase, IMessageBusReceiver, I this.aiBasedValidation = this.DataSourceOptions.AutomaticValidation; this.areDataSourcesEnabled = !this.DataSourceOptions.DisableDataSources; this.selectedDataSources = this.SettingsManager.ConfigurationData.DataSources.Where(ds => this.DataSourceOptions.PreselectedDataSourceIds.Contains(ds.Id)).ToList(); + this.waitingForDataSources = false; // // Remark: We do not apply the filters here. This is done later