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
Fix nullable warning
  • Loading branch information
StefanoRivolta-Previero committed Apr 4, 2022
commit bd3a881de24e4e105eeae3ca3bf7ac8ee931dd15
2 changes: 1 addition & 1 deletion MaterialDesign3.Demo.Wpf/Domain/MainWindowViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public MainWindowViewModel(ISnackbarMessageQueue snackbarMessageQueue)
AddNewNotificationCommand = new AnotherCommandImplementation(
_ => DemoItems[0].AddNewNotification());

AddNewNotificationCommand.Execute(null);
AddNewNotificationCommand.Execute(new object());
}

private readonly ICollectionView _demoItemsView;
Expand Down