From 02b620401adaa2cfd3ea781eb596c441ef932e5c Mon Sep 17 00:00:00 2001 From: jedi Date: Thu, 6 Jun 2024 22:53:49 +0200 Subject: [PATCH] stash --- web/src/components/inputs/FormatedText.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/components/inputs/FormatedText.vue b/web/src/components/inputs/FormatedText.vue index 89dee51..68eac41 100644 --- a/web/src/components/inputs/FormatedText.vue +++ b/web/src/components/inputs/FormatedText.vue @@ -25,7 +25,7 @@ export default { methods: { rawhtml(value) { if (typeof this.format === 'function') { - return this.format(value.replace(/ /g, ' ')); + return this.format(value).replace(/ /g, ' '); } else { return value; }