From 4f3729777e27d32638efe72a556b25f2c0bd93c3 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Thu, 28 Oct 2021 11:32:35 +0200 Subject: Replace all mentions in quotes Signed-off-by: Joas Schilling --- src/components/Quote.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/components/Quote.vue') 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 -- cgit v1.2.3