mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-01 04:14:45 +03:00
🔨 Refactor timeline end date logic
- Update timeline end date to latest delta timestamp plus 60 seconds [src/routes/projects/[projectId]/timeline/+page.svelte] - Change the end date of the timeline from the latest delta timestamp to the latest delta timestamp plus 60 seconds
This commit is contained in:
parent
9151c5bbd8
commit
b6fcf77bfe
@ -226,7 +226,7 @@
|
||||
dateMilliseconds: dateMilliseconds,
|
||||
branch: uiSession.session.meta.branch || 'master',
|
||||
start: new Date(uiSession.earliestDeltaTimestampMs),
|
||||
end: new Date(uiSession.latestDeltaTimestampMs),
|
||||
end: addSeconds(new Date(uiSession.latestDeltaTimestampMs), 60),
|
||||
deltas: uiSession.deltas,
|
||||
files: listFiles({
|
||||
projectId: $project?.id || '',
|
||||
|
Loading…
Reference in New Issue
Block a user