From 2358fe22abddd306da567db173b9c2ebc0a2adb7 Mon Sep 17 00:00:00 2001 From: Zsolt Tasnadi Date: Wed, 5 Aug 2026 07:28:47 +0200 Subject: [PATCH] Fix Release date field casing in CatalogShowPage MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit release.UpdatedAt does not exist on the Release interface (or in the API response) — the release dates rendered as invalid values and vue-tsc failed the build. --- apps/frontend/src/page/catalog/CatalogShowPage.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/frontend/src/page/catalog/CatalogShowPage.vue b/apps/frontend/src/page/catalog/CatalogShowPage.vue index c762796..a723599 100644 --- a/apps/frontend/src/page/catalog/CatalogShowPage.vue +++ b/apps/frontend/src/page/catalog/CatalogShowPage.vue @@ -96,7 +96,7 @@ {{ t('catalogShow.latestStable') }}

{{ latestStable.version }}

-

{{ t('catalogShow.released') }} {{ formatDateTime(latestStable.UpdatedAt) }}

+

{{ t('catalogShow.released') }} {{ formatDateTime(latestStable.updatedAt) }}

{{ t('catalogShow.playNow') }} @@ -155,7 +155,7 @@ {{ t('catalogShow.play') }} - {{ formatDateTime(release.UpdatedAt) }} + {{ formatDateTime(release.updatedAt) }} @@ -185,7 +185,7 @@
{{ release.version }}
{{ t('catalogShow.play') }} - {{ formatDateTime(release.UpdatedAt) }} + {{ formatDateTime(release.updatedAt) }} @@ -218,7 +218,7 @@
{{ release.version }}
-
{{ formatDateTime(release.UpdatedAt) }}
+
{{ formatDateTime(release.updatedAt) }}
Dev