1
0
mirror of https://github.com/Luzifer/mondash.git synced 2024-09-19 08:52:58 +00:00

Fix: Properly display newlines in metric description

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2019-08-16 22:25:45 +02:00
parent 45cce5eb67
commit 324b724f03
Signed by: luzifer
GPG Key ID: DC2729FDD34BE99E

View File

@ -13,7 +13,7 @@
</b-row>
<b-card-text>
{{ metric.description }}
{{ description }}
</b-card-text>
<graph :metric="metric" v-if="!metric.config.hide_mad"></graph>
@ -46,6 +46,12 @@ export default {
name: 'metric',
props: ['metric'],
computed: {
description() {
return this.metric.description.replace(new RegExp(/\n/, 'g'), '<br>')
},
},
components: { graph, historyBar },
methods: {