fix: use global replace for analytics header templates (#1134)

Support replacing multiple instances of the same template variable in analytics templates
pull/1144/head
Phil Cullen 5 years ago committed by Nicolas Giard
parent ab8391c085
commit 7db814c7ad

@ -117,7 +117,7 @@ module.exports = class Analytics extends Model {
code.bodyEnd = _.defaultTo(code.bodyEnd, '')
_.forOwn(provider.config, (value, key) => {
code.head = _.replace(code.head, `{{${key}}}`, value)
code.head = _.replace(code.head, new RegExp(`{{${key}}}`, 'g'), value)
code.bodyStart = _.replace(code.bodyStart, `{{${key}}}`, value)
code.bodyEnd = _.replace(code.bodyEnd, `{{${key}}}`, value)
})

Loading…
Cancel
Save