From b07e6e348c30d08d65d34b1a23f646046b35c5cf Mon Sep 17 00:00:00 2001 From: ygnask Date: Thu, 17 Apr 2025 16:40:08 +0900 Subject: [PATCH] Display creation and expiration dates on a single line --- components/dashboard/links/Link.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/dashboard/links/Link.vue b/components/dashboard/links/Link.vue index 4b36f53..ccec374 100644 --- a/components/dashboard/links/Link.vue +++ b/components/dashboard/links/Link.vue @@ -165,7 +165,7 @@ function copyLink() { - {{ shortDate(link.createdAt) }} + {{ shortDate(link.createdAt) }}

Created At: {{ longDate(link.createdAt) }}

@@ -178,7 +178,7 @@ function copyLink() { - {{ shortDate(link.expiration) }} + {{ shortDate(link.expiration) }}

Expires At: {{ longDate(link.expiration) }}