From f4cdd83e9f6b6db6ce1431bd7a8d9fdcb6427267 Mon Sep 17 00:00:00 2001 From: Gavin Masterson Date: Thu, 30 Oct 2025 15:35:26 +0200 Subject: [PATCH] fix: Retain tag list in time_entries --- R/time-entry.R | 2 ++ 1 file changed, 2 insertions(+) diff --git a/R/time-entry.R b/R/time-entry.R index d902cdb..78e0b82 100644 --- a/R/time-entry.R +++ b/R/time-entry.R @@ -5,6 +5,7 @@ EMPTY_ENTRIES <- tibble( project_id = character(), billable = logical(), description = character(), + tag_ids = list(), time_start = POSIXct(), time_end = POSIXct(), duration = numeric() @@ -23,6 +24,7 @@ parse_time_entries <- function(entries, finished, concise) { project_id, billable, description, + tag_ids, time_start = start, time_end = end ) %>%