Skip to content

Commit

Permalink
Fix nullable warning
Browse files Browse the repository at this point in the history
  • Loading branch information
DSPaul committed Mar 10, 2024
1 parent cbd9119 commit 0155f31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ViewModels/ExportCollectionViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public bool AdvancedExport
}
}

private ActionCommand _applyActiveFiltesCommand;
private ActionCommand? _applyActiveFiltesCommand;
public ActionCommand ApplyActiveFiltersCommand => _applyActiveFiltesCommand ??=
new(ApplyActiveFilters, () => MainViewModel.CollectionVM.FilterVM.HasActiveFilters);
private void ApplyActiveFilters()
Expand Down

0 comments on commit 0155f31

Please sign in to comment.