diff --git a/resources/views/livewire/project/application/deployment/index.blade.php b/resources/views/livewire/project/application/deployment/index.blade.php index 6b66d0183..d4bcdd8e3 100644 --- a/resources/views/livewire/project/application/deployment/index.blade.php +++ b/resources/views/livewire/project/application/deployment/index.blade.php @@ -140,7 +140,11 @@ } }, measure_finished_time() { - return this.finished_time; + if (this.finished_time > 2000) { + return 0; + } else { + return this.finished_time; + } }, measure_since_started() { return dayjs.utc(created_at).fromNow();