This commit is contained in:
j3d1 2024-06-06 22:53:49 +02:00
parent 7da64f0612
commit f29209b257

View file

@ -25,7 +25,7 @@ export default {
methods: { methods: {
rawhtml(value) { rawhtml(value) {
if (typeof this.format === 'function') { if (typeof this.format === 'function') {
return this.format(value.replace(/ /g, ' ')); return this.format(value).replace(/ /g, ' ');
} else { } else {
return value; return value;
} }