summaryrefslogtreecommitdiffstats
path: root/src/components/Quote.vue
diff options
context:
space:
mode:
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