mirror of
				https://github.com/MindWorkAI/AI-Studio.git
				synced 2025-11-04 00:00:21 +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>
 | 
					    </MudSelect>
 | 
				
			||||||
    @if (this.AllowOther && this.Value.Equals(this.OtherValue))
 | 
					    @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>
 | 
					</MudStack>
 | 
				
			||||||
@ -3,4 +3,5 @@
 | 
				
			|||||||
- Improved the data source selection behavior when no data source is available or selected, for whatever reason.
 | 
					- 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.
 | 
					- 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 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.
 | 
					- 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