Update report.vue

fixed a type on the 'low alerts' report screen (ony -> only)
This commit is contained in:
ranlo 2020-12-19 17:12:12 +02:00 committed by GitHub
parent 572fd7915a
commit 5497c0a71a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,7 +17,7 @@
</div> </div>
<div v-else-if="alerts.low.length >= 1" class="low-wrapper"> <div v-else-if="alerts.low.length >= 1" class="low-wrapper">
<div class="center"> <div class="center">
<h1 class="warning-title">You have ony {{ nb_translate(alerts.moderate.low) }} low alerts,<br /> don't hesitate to check them.</h1> <h1 class="warning-title">You have only {{ nb_translate(alerts.moderate.low) }} low alerts,<br /> don't hesitate to check them.</h1>
<button class="btn btn-report-low-light" v-on:click="new_capture()">Start a new capture</button> <button class="btn btn-report-low-light" v-on:click="new_capture()">Start a new capture</button>
<button class="btn btn-report-low" @click="show_report=true;results=false;">Show the full report</button> <button class="btn btn-report-low" @click="show_report=true;results=false;">Show the full report</button>
</div> </div>
@ -112,4 +112,4 @@ export default {
} }
} }
} }
</script> </script>