We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8981ce commit 067f318Copy full SHA for 067f318
src/Core/Components/List/FluentAutocomplete.razor.cs
@@ -430,14 +430,15 @@ async Task KeyDown_BackspaceAsync()
430
}
431
432
// Remove last char
433
- if (!string.IsNullOrEmpty(ValueText))
434
- {
435
- await InputHandlerAsync(new ChangeEventArgs()
436
437
- Value = ValueText[..^1],
438
- });
439
- return;
440
- }
+ // -> Commented to fix #3359
+ // if (!string.IsNullOrEmpty(ValueText))
+ // {
+ // await InputHandlerAsync(new ChangeEventArgs()
+ // Value = ValueText[..^1],
+ // });
+ // return;
441
+ // }
442
443
444
// ArrowUp
0 commit comments