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" },