refactor: Fix indent

This commit is contained in:
TwiN 2022-06-12 18:40:24 -04:00
parent 9a5f245440
commit 2b9d3e99d3
2 changed files with 21 additions and 20 deletions

View File

@ -2,7 +2,7 @@ export const helper = {
methods: {
generatePrettyTimeAgo(t) {
let differenceInMs = new Date().getTime() - new Date(t).getTime();
if (differenceInMs > 3*86400000) { // If it was more than 3 days ago, we'll display the number of days ago
if (differenceInMs > 3 * 86400000) { // If it was more than 3 days ago, we'll display the number of days ago
let days = (differenceInMs / 86400000).toFixed(0);
return days + " day" + (days !== "1" ? "s" : "") + " ago";
}

View File

@ -1,11 +1,12 @@
<template>
<Loading v-if="!retrievedData" class="h-64 w-64 px-4 my-24" />
<Loading v-if="!retrievedData" class="h-64 w-64 px-4 my-24"/>
<slot v-else>
<Endpoints
:endpointStatuses="endpointStatuses"
:showStatusOnHover="true"
@showTooltip="showTooltip"
@toggleShowAverageResponseTime="toggleShowAverageResponseTime" :showAverageResponseTime="showAverageResponseTime"
@toggleShowAverageResponseTime="toggleShowAverageResponseTime"
:showAverageResponseTime="showAverageResponseTime"
/>
<Pagination @page="changePage"/>
</slot>