Skip to content

Commit

Permalink
Fix bug where endpoints search breaks, resolves #6
Browse files Browse the repository at this point in the history
  • Loading branch information
BlossomiShymae committed Dec 6, 2024
1 parent 38e1ea2 commit b41be19
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ public partial class EndpointsViewModel : ObservableObject

public EndpointsViewModel(IAvaloniaList<string> plugins, Action<ObservableObject> onClicked)
{
Plugins = plugins;
Query = plugins;
Plugins = new AvaloniaList<string>(plugins);
Query = new AvaloniaList<string>(plugins);
OnClicked = onClicked;
}

Expand Down

0 comments on commit b41be19

Please sign in to comment.