aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRasmus Fuhse <fuhse@data-quest.de>2024-01-25 10:05:33 +0100
committerRasmus Fuhse <fuhse@data-quest.de>2024-01-25 10:05:33 +0100
commitf1bea04dcc53f91daa471ff1d07d7302af345ed2 (patch)
tree3b1e6c313113607c8e114563bc215aece28c83df
parent3cbeef5c01e1bcc051403a47cae73d50fdbbf7a8 (diff)
porting #3671biest-3580
-rw-r--r--resources/vue/components/BlubberThread.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/vue/components/BlubberThread.vue b/resources/vue/components/BlubberThread.vue
index 9a47413..a1edd8e 100644
--- a/resources/vue/components/BlubberThread.vue
+++ b/resources/vue/components/BlubberThread.vue
@@ -312,7 +312,7 @@
}
});
if (comment_data) {
- let quote = '[quote=' + comment_data.user_name + ']' + (comment_data.content.replace(/\[quote[^\]]*\].*\[\/quote\]/g, '')).trim() + "[/quote]\n";
+ let quote = '[quote=' + comment_data.user_name + ']' + (comment_data.content.replace(/\[quote[^\]]*\].*\[\/quote\]/g, '')).trim() + " [/quote]\n";
$(this.$el).find('.writer textarea').val(quote);
let textarea = $(this.$el).find('.writer textarea').last()[0];
textarea.focus();