add break time entries and simplified time tracker ui

This commit is contained in:
Gregor Vostrak
2026-07-21 16:48:37 +02:00
parent c07c62bfab
commit 64ca1e9115
128 changed files with 6252 additions and 437 deletions

View File

@@ -54,6 +54,7 @@ function buildRow(key: string, projectId: string | null, entries: TimeEntry[]):
taskId: null,
billable: false,
tags: [],
type: 'work',
cells,
totalSeconds,
};
@@ -177,6 +178,7 @@ describe('useTimesheetRowMutations', () => {
taskId: null,
billable: false,
tags: [],
type: 'work',
});
expect(removeSlot).not.toHaveBeenCalled();
});
@@ -207,6 +209,7 @@ describe('useTimesheetRowMutations', () => {
taskId: null,
billable: false,
tags: [],
type: 'work',
});
});
@@ -233,6 +236,7 @@ describe('useTimesheetRowMutations', () => {
taskId: null,
billable: true,
tags: [],
type: 'work',
});
});