Fixed perf issues

This commit is contained in:
TheXamlGuy
2024-07-02 23:38:51 +01:00
parent 929d72e4e8
commit e1ffb541f6
29 changed files with 139 additions and 82 deletions
+1 -1
View File
@@ -16,5 +16,5 @@ public partial class HyperlinkEntryViewModel(IServiceProvider provider,
double width) : ItemEntryViewModel<string>(provider, factory, mediator, publisher, subscriber, disposer, state, configuration, key, value, width)
{
[RelayCommand]
public void Invoke() => Publisher.Publish(Create.As(new Hyperlink(Value)));
private void Invoke() => Publisher.Publish(Create.As(new Hyperlink(Value)));
}