From f072823f008b6a871b667215f61e7e33cb69cbe3 Mon Sep 17 00:00:00 2001 From: Tim Koch Date: Sun, 1 Sep 2024 22:01:05 +0200 Subject: [PATCH] fix: Deployment running for - without "ago" --- .../livewire/project/application/deployment/index.blade.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/views/livewire/project/application/deployment/index.blade.php b/resources/views/livewire/project/application/deployment/index.blade.php index 001499b71..12c453e02 100644 --- a/resources/views/livewire/project/application/deployment/index.blade.php +++ b/resources/views/livewire/project/application/deployment/index.blade.php @@ -106,7 +106,7 @@
@if ($deployment->status !== 'in_progress') - Finished 0s in + Finished 0s ago in 0s @else Running for 0s @@ -157,7 +157,7 @@ } }, measure_since_started() { - return dayjs.utc(created_at).fromNow(); + return dayjs.utc(created_at).fromNow(true); // "true" prevents the "ago" suffix }, }))