mirror of
https://github.com/BlossomiShymae/Needlework.Net.git
synced 2025-12-06 18:20:47 +01:00
Fix bug where endpoints search breaks, resolves #6
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user