diff --git a/app/MindWork AI Studio/Components/Blocks/ConfigurationOption.razor b/app/MindWork AI Studio/Components/Blocks/ConfigurationOption.razor index f8de2b91..24899fee 100644 --- a/app/MindWork AI Studio/Components/Blocks/ConfigurationOption.razor +++ b/app/MindWork AI Studio/Components/Blocks/ConfigurationOption.razor @@ -1,7 +1,7 @@ @inherits ConfigurationBase <MudField Label="@this.OptionDescription" Variant="Variant.Outlined" HelperText="@this.OptionHelp" Class="@MARGIN_CLASS"> - <MudSwitch T="bool" Value="@this.State()" ValueChanged="@(updatedState => this.OptionChanged(updatedState))"> + <MudSwitch T="bool" Value="@this.State()" ValueChanged="@(updatedState => this.OptionChanged(updatedState))" Color="Color.Primary"> @(this.State() ? this.LabelOn : this.LabelOff) </MudSwitch> </MudField> \ No newline at end of file diff --git a/app/MindWork AI Studio/wwwroot/changelog/v0.8.5.md b/app/MindWork AI Studio/wwwroot/changelog/v0.8.5.md index b1112069..5d3715ef 100644 --- a/app/MindWork AI Studio/wwwroot/changelog/v0.8.5.md +++ b/app/MindWork AI Studio/wwwroot/changelog/v0.8.5.md @@ -1,4 +1,5 @@ # v0.8.4, build 167 +- Improved switch component for settings: when an option is enabled, the switch is using a different color - Fixed the applying of spellchecking settings to the single-line dialog - Restructured the layout of the settings page - Refactored the settings data model