summaryrefslogtreecommitdiffstats
path: root/src/components/Quote.vue
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-10-28 11:32:35 +0200
committerJoas Schilling <coding@schilljs.com>2021-10-28 11:32:35 +0200
commit4f3729777e27d32638efe72a556b25f2c0bd93c3 (patch)
treee5326e9e94cb19ea25a80655004a4dd86bedc0bf /src/components/Quote.vue
parent51a5b85287bee54611580db77c4e8d3e21917bc1 (diff)
Replace all mentions in quotes
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'src/components/Quote.vue')
-rw-r--r--src/components/Quote.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Quote.vue b/src/components/Quote.vue
index 6fed69bab..03098f2ee 100644
--- a/src/components/Quote.vue
+++ b/src/components/Quote.vue
@@ -200,7 +200,7 @@ export default {
// We don't really use rich objects in the subtitle, instead we fall back to the name of the item
Object.keys(params).forEach((parameterKey) => {
- subtitle = subtitle.replace('{' + parameterKey + '}', params[parameterKey].name)
+ subtitle = subtitle.replaceAll('{' + parameterKey + '}', params[parameterKey].name)
})
return subtitle