Skip to content

Commit

Permalink
Fix ListNotificationOptions assignment (#16239)
Browse files Browse the repository at this point in the history
  • Loading branch information
hishamco authored Jun 5, 2024
1 parent 5501180 commit 77fa6e0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ private static void BuildOptionsViewModel(ListNotificationOptions m, ListNotific
m.Sorts = model.Sorts;
m.Statuses = model.Statuses;
m.BulkActions = model.BulkActions;
m.BulkAction = m.BulkAction;
m.BulkAction = model.BulkAction;
m.StartIndex = model.StartIndex;
m.EndIndex = model.EndIndex;
m.NotificationsCount = model.NotificationsCount;
Expand Down

0 comments on commit 77fa6e0

Please sign in to comment.