Skip to content

Commit 6ee8ca9

Browse files
committed
Only display date in series table created cell
There's such a thing as too much information, and in the series table only the date is really required for the created field.
1 parent d01c96b commit 6ee8ca9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/events/partials/SeriesDateTimeCell.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ const SeriesDateTimeCell = ({
1313
return (
1414
// Link template for creation date of series
1515
<span>
16-
{t("dateFormats.dateTime.short", {
17-
dateTime: renderValidDate(row.creation_date),
16+
{t("dateFormats.date.short", {
17+
date: renderValidDate(row.creation_date),
1818
})}
1919
</span>
2020
);

0 commit comments

Comments
 (0)