mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-27 15:59:47 +00:00
Fixed issue with enum selection component not updating for 'other' values (#359)
This commit is contained in:
parent
0c81f90b84
commit
a5863a176c
@ -12,6 +12,6 @@
|
||||
</MudSelect>
|
||||
@if (this.AllowOther && this.Value.Equals(this.OtherValue))
|
||||
{
|
||||
<MudTextField T="string" Text="@this.OtherInput" TextChanged="this.OtherInputChanged" Validation="@this.ValidateOther" Label="@this.LabelOther" Variant="Variant.Outlined" Margin="Margin.Dense" UserAttributes="@USER_INPUT_ATTRIBUTES" Immediate="@true"/>
|
||||
<MudTextField T="string" Text="@this.OtherInput" TextChanged="this.OtherValueChanged" Validation="@this.ValidateOther" Label="@this.LabelOther" Variant="Variant.Outlined" Margin="Margin.Dense" UserAttributes="@USER_INPUT_ATTRIBUTES" Immediate="@true"/>
|
||||
}
|
||||
</MudStack>
|
@ -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.
|
Loading…
Reference in New Issue
Block a user