From a5863a176c1f7fa0ad01aa0bd1dc0728b9cef9ba Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Sun, 16 Mar 2025 20:53:45 +0100 Subject: [PATCH] Fixed issue with enum selection component not updating for 'other' values (#359) --- app/MindWork AI Studio/Components/EnumSelection.razor | 2 +- app/MindWork AI Studio/wwwroot/changelog/v0.9.37.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/app/MindWork AI Studio/Components/EnumSelection.razor b/app/MindWork AI Studio/Components/EnumSelection.razor index 84fd6130..bd5bc08a 100644 --- a/app/MindWork AI Studio/Components/EnumSelection.razor +++ b/app/MindWork AI Studio/Components/EnumSelection.razor @@ -12,6 +12,6 @@ @if (this.AllowOther && this.Value.Equals(this.OtherValue)) { - + } \ No newline at end of file diff --git a/app/MindWork AI Studio/wwwroot/changelog/v0.9.37.md b/app/MindWork AI Studio/wwwroot/changelog/v0.9.37.md index a0615008..b5234bf6 100644 --- a/app/MindWork AI Studio/wwwroot/changelog/v0.9.37.md +++ b/app/MindWork AI Studio/wwwroot/changelog/v0.9.37.md @@ -3,4 +3,5 @@ - Improved the data source selection behavior when no data source is available or selected, for whatever reason. - Moved the data source settings into the data selection component. - Fixed the "send to" menu position, which was offset due to the MudBlazor 8 upgrade. +- Fixed a rare issue with the enum selection component, where the `SelectionUpdated` function was not called for the special `other` enum values. - Removed the link to the ERI server assistant from its settings page, as it is no longer necessary. \ No newline at end of file