I bind an autocomplete to list where the data is retrieved by API, on entering values in the input it seems that it does not accept space. Every time I press space, it looks like the control is "searching" but the space is not accepted in the input, so I'm not able to write a search string with spaces like "space is not accepted".
<SfAutoComplete ID="Maker" @bind-Value="@(Item.Maker)" TValue="string" TItem="MakerDto" Placeholder="Produsent" FloatLabelType="FloatLabelType.Always" DataSource="@Makers">
<AutoCompleteFieldSettings Value="Name"></AutoCompleteFieldSettings>
</SfAutoComplete>