aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/components/status/status.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/components/status/status.js b/src/components/status/status.js
index dd0ce3ab..714ea6d2 100644
--- a/src/components/status/status.js
+++ b/src/components/status/status.js
@@ -44,7 +44,7 @@ const Status = {
showingLongSubject: false,
error: null,
// not as computed because it sets the initial state which will be changed later
- expandingSubject: !this.$store.getters.mergedConfig.collapseMessageWithSubject,
+ expandingSubject: !this.$store.getters.mergedConfig.collapseMessageWithSubject
}
},
computed: {
@@ -266,10 +266,10 @@ const Status = {
return processHtml(html, (string) => {
if (string.includes('>') &&
string
- .replace(/<[^>]+?>/gi, '') // remove all tags
- .replace(/@\w+/gi, '') // remove mentions (even failed ones)
- .trim()
- .startsWith('&gt;')) {
+ .replace(/<[^>]+?>/gi, '') // remove all tags
+ .replace(/@\w+/gi, '') // remove mentions (even failed ones)
+ .trim()
+ .startsWith('&gt;')) {
return `<span class='greentext'>${string}</span>`
} else {
return string