fix: correct formatting in EditMonitor.vue for SQL error handling template

pull/5429/head
Antonino Natale 2 weeks ago
parent ae5f8de538
commit e6f9327b8d

@ -540,7 +540,7 @@
</template> </template>
<!-- SQL Server / PostgreSQL / MySQL Error Handling --> <!-- SQL Server / PostgreSQL / MySQL Error Handling -->
<template v-if="monitor.type === 'sqlserver' || monitor.type === 'postgres' || monitor.type === 'mysql'"> <template v-if="monitor.type === 'sqlserver' || monitor.type === 'postgres' || monitor.type === 'mysql'">
<div class="my-3 form-check"> <div class="my-3 form-check">
<input id="sqlErrorHandling" v-model="monitor.databaseQueryHandleEmptyAsFailure" class="form-check-input" type="checkbox"> <input id="sqlErrorHandling" v-model="monitor.databaseQueryHandleEmptyAsFailure" class="form-check-input" type="checkbox">
<label class="form-check-label" for="sqlErrorHandling"> <label class="form-check-label" for="sqlErrorHandling">
@ -548,7 +548,7 @@
</label> </label>
<div class="form-text"> <div class="form-text">
{{ $t("handleEmptyResultDescription") }} {{ $t("handleEmptyResultDescription") }}
</div> </div>
</div> </div>
</template> </template>

Loading…
Cancel
Save