Replace all mentions in quotes

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2021-10-28 11:32:35 +02:00
Родитель 51a5b85287
Коммит 4f3729777e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7076EA9751AACDDA
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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