Skip to content
This repository has been archived by the owner on Feb 13, 2024. It is now read-only.

Commit

Permalink
Rename variable (win)
Browse files Browse the repository at this point in the history
  • Loading branch information
atsvirchkova committed Nov 18, 2020
1 parent 79ffa9f commit 05512b7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public TimelineViewModel()
.ToDictionary(pair => pair.Key, pair => pair.Value))
.ToPropertyEx(this, x => x.TimeEntryBlocks);
blocksObservable.Select(blocks => GenerateGapTimeEntryBlocks(blocks.Values
.Where(v => v.StartTime().Date <= SelectedDate && v.EndTime().Date >= SelectedDate).ToList(), SelectedScaleMode))
.Where(timeEntryBlock => timeEntryBlock.StartTime().Date <= SelectedDate && timeEntryBlock.EndTime().Date >= SelectedDate).ToList(), SelectedScaleMode))
.ToPropertyEx(this, x => x.GapTimeEntryBlocks);

this.WhenAnyValue(x => x.TimeEntryBlocks)
Expand Down

0 comments on commit 05512b7

Please sign in to comment.