I'm encountering an issue with the ComboBox in my application. After selecting an item from the ComboBox, the dropdown button stops responding. To make the Dropdown button functional again, I have to press the 'Clear' button. Is this behavior expected, or is there a way to resolve this issue? Your guidance and assistance in troubleshooting this behavior would be greatly appreciated
<SfComboBox id="contato" TItem="Contato" TValue="Contato" @bind-Value="Contato" DataSource="@ClienteOrcamento.Contatos" IgnoreCase="true" IgnoreAccent="true">
<ComboBoxFieldSettings Value="nome"></ComboBoxFieldSettings>
</SfComboBox>
public class Contato
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int Id { get; set; }
[MaxLength(255)]
[Required]
public string nome { get; set; }
[MaxLength(25)]
public string? telefone { get; set; }
[MaxLength(100)]
public string? email { get; set; }
public int ClienteId { get; set; }
public virtual Cliente Cliente { get; set; }
}