Fix HealthChecks linting errors

This commit is contained in:
Matthias Bilger 2023-01-08 18:54:45 +01:00
parent 18c2af774d
commit c50773e727
1 changed files with 8 additions and 7 deletions

View File

@ -1,14 +1,15 @@
<template> <template>
<div class="health-checks-wrapper" v-if="crons"> <div class="health-checks-wrapper" v-if="crons">
<template <template
v-for="cron in crons" :key="cron.id" v-for="cron in crons"
> >
<div class="status"> <div class="status" v-bind:key="cron.id + 'status'">
<p :class="cron.status">{{ cron.status | formatStatus }}</p> <p :class="cron.status">{{ cron.status | formatStatus }}</p>
</div> </div>
<div <div
class="info" class="info"
v-tooltip="pingTimeTooltip(cron)" v-tooltip="pingTimeTooltip(cron)"
v-bind:key="cron.id + 'info'"
> >
<p class="cron-name">{{ cron.name }}</p> <p class="cron-name">{{ cron.name }}</p>
<p class="cron-desc">{{ cron.desc }}</p> <p class="cron-desc">{{ cron.desc }}</p>
@ -37,7 +38,7 @@ export default {
if (status === 'down') symbol = '✘'; if (status === 'down') symbol = '✘';
if (status === 'new') symbol = '❖'; if (status === 'new') symbol = '❖';
if (status === 'paused') symbol = '⏸'; if (status === 'paused') symbol = '⏸';
if (status === 'running') symbol = '▶' if (status === 'running') symbol = '▶';
return `${symbol} ${capitalize(status)}`; return `${symbol} ${capitalize(status)}`;
}, },
formatDate(timestamp) { formatDate(timestamp) {
@ -54,8 +55,8 @@ export default {
if (!this.options.apiKey) { if (!this.options.apiKey) {
this.error('An API key is required, please see the docs for more info'); this.error('An API key is required, please see the docs for more info');
} }
if (typeof(this.options.apiKey) === "string") { if (typeof this.options.apiKey === 'string') {
return [ this.options.apiKey ]; return [this.options.apiKey];
} }
return this.options.apiKey; return this.options.apiKey;
}, },
@ -71,7 +72,7 @@ export default {
(response) => { this.processData(response, results); }, (response) => { this.processData(response, results); },
); );
}); });
results.sort((a,b) => (a.name > b.name) ? 1 : ((b.name > a.name) ? -1 : 0)); results.sort((a, b) => ((a.name > b.name) ? 1 : -1));
this.crons = results; this.crons = results;
}, },
/* Assign data variables to the returned data */ /* Assign data variables to the returned data */