Fixed default data source selection

This commit is contained in:
Thorsten Sommer 2026-07-05 14:02:19 +02:00
parent d7c2dceb7b
commit 4aac5ca139
Signed by untrusted user who does not match committer: tsommer
GPG Key ID: 371BBA77A02C0108
2 changed files with 2 additions and 0 deletions

View File

@ -94,6 +94,7 @@ public partial class DataSourceSelection : MSGComponentBase
this.aiBasedSourceSelection = this.DataSourceOptions.AutomaticDataSourceSelection;
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();
}
switch (this.SelectionMode)

View File

@ -8,4 +8,5 @@
- Improved the chat experience by automatically focusing the message composer again when it becomes available. Thanks, Dominic Neuburg (`donework`), for the contribution.
- Improved the chat message formatting so line breaks in responses are preserved more closely, making structured text easier to read. Thanks, Dominic Neuburg (`donework`), for the contribution.
- Fixed configuration plugins so they can configure assistant plugin audit settings, including required audit levels, audit provider selection, and automatic background audits.
- Fixed default data source selection so sources that require local or trusted providers are selected again after switching from a cloud provider to a suitable provider.
- Upgraded Rust to v1.96.1