Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -760,8 +760,6 @@ protected override async Task OnAfterRenderAsync(bool firstRender)
var options = new KeyInterceptorOptions(
"mud-list-item-extended",
[
// prevent scrolling page, toggle open/close
new(" ", preventDown: "key+none"),
// prevent scrolling page, instead highlight previous item
new("ArrowUp", preventDown: "key+none"),
// prevent scrolling page, instead highlight next item
Expand Down Expand Up @@ -913,8 +911,6 @@ protected internal async Task SearchBoxHandleKeyDownAsync(KeyboardEventArgs obj)
{
case " ":
await SearchChanged(_searchString + " ");
//_searchString = _searchString + " ";
//await OnSearchStringChange.InvokeAsync(_searchString);
await _searchField.BlurAsync();
await _searchField.FocusAsync();
StateHasChanged();
Expand Down
Loading