keep tags when starting a new time entry from a finished one, fixes ST-469

This commit is contained in:
Gregor Vostrak
2024-10-22 13:27:30 +02:00
parent f534f90ca7
commit 548307336a

View File

@@ -113,6 +113,7 @@ function startTimeEntryFromExisting(entry: TimeEntry) {
end: null, end: null,
billable: entry.billable, billable: entry.billable,
description: entry.description, description: entry.description,
tags: [...entry.tags],
}); });
} }
function sumDuration(timeEntries: TimeEntry[]) { function sumDuration(timeEntries: TimeEntry[]) {