Skip to content

Commit 067f318

Browse files
authored
Fix the second Autocomplete call (#3367)
1 parent b8981ce commit 067f318

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

src/Core/Components/List/FluentAutocomplete.razor.cs

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -430,14 +430,15 @@ async Task KeyDown_BackspaceAsync()
430430
}
431431

432432
// Remove last char
433-
if (!string.IsNullOrEmpty(ValueText))
434-
{
435-
await InputHandlerAsync(new ChangeEventArgs()
436-
{
437-
Value = ValueText[..^1],
438-
});
439-
return;
440-
}
433+
// -> Commented to fix #3359
434+
// if (!string.IsNullOrEmpty(ValueText))
435+
// {
436+
// await InputHandlerAsync(new ChangeEventArgs()
437+
// {
438+
// Value = ValueText[..^1],
439+
// });
440+
// return;
441+
// }
441442
}
442443

443444
// ArrowUp

0 commit comments

Comments
 (0)