Skip to content
Merged
1 change: 1 addition & 0 deletions src/lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,7 @@
"Show Tags": "Show Tags",
"Hide Tags": "Hide Tags",
"Description": "Description",
"descriptionHelpText": "Shown on the monitor details page. Markdown is allowed and sanitized (preserves spaces and indentation) before display.",
"No monitors available.": "No monitors available.",
"Add one": "Add one",
"No Monitors": "No Monitors",
Expand Down
3 changes: 2 additions & 1 deletion src/pages/EditMonitor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -818,7 +818,8 @@
<!-- Description -->
<div class="my-3">
<label for="description" class="form-label">{{ $t("Description") }}</label>
<input id="description" v-model="monitor.description" type="text" class="form-control">
<input id="description" v-model="monitor.description" type="text" class="form-control">

Check failure on line 821 in src/pages/EditMonitor.vue

View workflow job for this annotation

GitHub Actions / check-linters

Expected indentation of 32 spaces but found 0 spaces
<div class="form-text">{{ $t("descriptionHelpText") }}</div>
</div>

<div class="my-3">
Expand Down
Loading