From c714b64fafe9dea80a340cc3920ca0bfad9f5fbb Mon Sep 17 00:00:00 2001 From: Mashupmark Date: Thu, 4 Jun 2026 16:02:30 +0200 Subject: [PATCH] Increase width of date in tables to ensure it's not truncated --- app/pages/logs.vue | 2 +- app/pages/reports/index.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/pages/logs.vue b/app/pages/logs.vue index 88800f5..2d71149 100644 --- a/app/pages/logs.vue +++ b/app/pages/logs.vue @@ -55,7 +55,7 @@ const tablePagination = DataGridFeatures.usePagination({ type TableEntry = NonNullable>[number]; type CustomColumnTypes = ColumnTypesFromFeatures; const columns = computed[]>(() => [ - { key: "date", type: "date", label: t("date"), width: "16ch" }, + { key: "date", type: "date", label: t("date"), width: "18ch" }, { key: "startedAt", type: "time", label: t("start"), width: "10ch" }, { key: "stoppedAt", type: "time", label: t("stop"), width: "10ch" }, { key: "duration", type: "duration", label: t("duration"), width: "10ch" }, diff --git a/app/pages/reports/index.vue b/app/pages/reports/index.vue index ce74b79..2b0ea68 100644 --- a/app/pages/reports/index.vue +++ b/app/pages/reports/index.vue @@ -32,7 +32,7 @@ const projectDuration = computed(() => { type TableEntry = UnwrapRef[number]; type CustomColumnTypes = ColumnTypesFromFeatures; const columns = computed[]>(() => [ - { key: "date", type: "date", label: t("date"), width: "16ch" }, + { key: "date", type: "date", label: t("date"), width: "18ch" }, { key: "startedAt", type: "time", label: t("start"), width: "10ch" }, { key: "stoppedAt", type: "time", label: t("stop"), width: "10ch" }, { key: "duration", type: "duration", label: t("duration"), width: "10ch" },