From c39837faba4269269f7fd3be13e03581f1acb354 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Wed, 18 Mar 2026 19:26:06 +0000 Subject: [PATCH] Make 'minutes' a bit shorter. To avoid some line wrapping --- html/static/js/time-relative.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/static/js/time-relative.js b/html/static/js/time-relative.js index 6d68e24c..a3863082 100644 --- a/html/static/js/time-relative.js +++ b/html/static/js/time-relative.js @@ -55,7 +55,7 @@ class TimeRelative extends HTMLElement { return "just now"; } else if (diffInSeconds < hour) { const minutes = Math.floor(diffInSeconds / minute); - return `${minutes} ${minutes === 1 ? "minute" : "minutes"} ago`; + return `${minutes} ${minutes === 1 ? "min" : "min"} ago`; } else if (diffInSeconds < day) { const hours = Math.floor(diffInSeconds / hour); return `${hours} ${hours === 1 ? "hour" : "hours"} ago`;