refactor(time-tracking): drop the now-redundant duration clamp in the entry list
This commit is contained in:
parent
0bd7f956f5
commit
00bbdbf95b
|
|
@ -182,7 +182,7 @@ watch(() => props.entries, entries => {
|
||||||
|
|
||||||
function entrySeconds(entry: ITimeEntry): number {
|
function entrySeconds(entry: ITimeEntry): number {
|
||||||
const end = entry.endTime ?? new Date()
|
const end = entry.endTime ?? new Date()
|
||||||
return Math.max(0, Math.floor((end.getTime() - entry.startTime.getTime()) / 1000))
|
return Math.floor((end.getTime() - entry.startTime.getTime()) / 1000)
|
||||||
}
|
}
|
||||||
|
|
||||||
const rows = computed(() => props.entries.map(entry => {
|
const rows = computed(() => props.entries.map(entry => {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue