mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-23 19:49:43 +01:00
make it build
This commit is contained in:
@@ -380,7 +380,7 @@ public partial class ListViewModel : PageViewModel, IDisposable
|
||||
}
|
||||
else
|
||||
{
|
||||
WeakReferenceMessenger.Default.Send<UpdateParametersMessage>(null);
|
||||
WeakReferenceMessenger.Default.Send<UpdateParametersMessage>(new(null));
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
@@ -10,7 +10,3 @@ namespace Microsoft.CmdPal.UI.ViewModels.Messages;
|
||||
public record ShowDetailsMessage(DetailsViewModel Details)
|
||||
{
|
||||
}
|
||||
|
||||
public record UpdateParametersMessage(IEnumerable<ParameterViewModel>? Parameters)
|
||||
{
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
// Copyright (c) Microsoft Corporation
|
||||
// The Microsoft Corporation licenses this file to you under the MIT license.
|
||||
// See the LICENSE file in the project root for more information.
|
||||
|
||||
namespace Microsoft.CmdPal.UI.ViewModels.Messages;
|
||||
|
||||
public record UpdateParametersMessage(IEnumerable<ParameterViewModel>? Parameters)
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user