Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Remove unused code
  • Loading branch information
vnbaaij committed Oct 4, 2024
commit c02826790c3443a91abb2f5eda4f2edc40c676db
11 changes: 0 additions & 11 deletions src/Core/Components/AppBar/FluentAppBar.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -136,11 +136,6 @@ private async Task InitializeOverflowAsync()
await _jsModuleOverflow.InvokeVoidAsync("fluentOverflowInitialize", _dotNetHelper, Id, Orientation == Orientation.Horizontal, OVERFLOW_SELECTOR);
}

private void TogglePopover()
{
_showMoreItems = !_showMoreItems;
}

private Task TogglePopoverAsync() => HandlePopoverToggleAsync(!_showMoreItems);

private async Task HandlePopoverKeyDownAsync(FluentKeyCodeEventArgs args)
Expand Down Expand Up @@ -172,12 +167,6 @@ private async Task HandlePopoverToggleAsync(bool value)
await PopoverVisibilityChanged.InvokeAsync(_showMoreItems);
}

//if (_showMoreItems)
//{
//StateHasChanged();
//_appSearch?.FocusAsync();
//}

await Task.CompletedTask;
}

Expand Down