Skip to content

Commit

Permalink
Fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
laupse committed Dec 20, 2023
1 parent 8366a37 commit 873ff83
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/pages/StatusPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,10 @@

<div class="my-3">
<label for="auto-refresh-interval" class="form-label">{{ $t("Refresh Interval") }}</label>
<input id="auto-refresh-interval" v-model="config.autoRefreshInterval" type="number"
class="form-control" :min="5">
<input
id="auto-refresh-interval" v-model="config.autoRefreshInterval" type="number"
class="form-control" :min="5"
>
<div class="form-text">
{{ $t("Refresh Interval Description", [config.autoRefreshInterval]) }}
</div>
Expand Down

0 comments on commit 873ff83

Please sign in to comment.