Skip to content

Commit

Permalink
fix: Set selected date to Now
Browse files Browse the repository at this point in the history
  • Loading branch information
ramateur committed Aug 15, 2023
1 parent 5fd1f26 commit 59c432f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ViewModel/vmPosition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public vmPosition(Dictionary<string, Func<string, string, bool>> dialogs)
HelperCommon.EXPOSURES.OnDataReceived += EXPOSURES_OnDataReceived;
HelperCommon.ACTIVEORDERS.OnDataReceived += ACTIVEORDERS_OnDataReceived;
HelperCommon.ACTIVEORDERS.OnDataRemoved += ACTIVEORDERS_OnDataRemoved;
this.SelectedDate = new DateTime(2022, 10, 6); // DateTime.Now;
this.SelectedDate = DateTime.Now;
}


Expand Down

0 comments on commit 59c432f

Please sign in to comment.