Skip to content

Commit

Permalink
Chore: Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
chakflying committed Apr 30, 2024
1 parent 4f9288b commit 54bc649
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/components/settings/APIKeys.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div>
<div
v-if="settings.disableAuth"
<div
v-if="settings.disableAuth"
class="mt-5 d-flex align-items-center justify-content-center my-3"
>
{{ $t("apiKeysDisabledMsg") }}
Expand All @@ -14,17 +14,17 @@
</div>

<div>
<span
<span
v-if="Object.keys(keyList).length === 0"
class="d-flex align-items-center justify-content-center my-3"
>
{{ $t("No API Keys") }}
</span>

<div
v-for="(item, index) in keyList"
:key="index"
class="item"
<div
v-for="(item, index) in keyList"
:key="index"
class="item"
:class="item.status"
>
<div class="left-part">
Expand Down Expand Up @@ -63,7 +63,7 @@
</div>
</div>

<div class="text-center mt-3" style="font-size: 13px">
<div class="text-center mt-3" style="font-size: 13px;">
<a href="https://github.com/louislam/uptime-kuma/wiki/API-Keys" target="_blank">{{ $t("Learn More") }}</a>
</div>

Expand Down

0 comments on commit 54bc649

Please sign in to comment.