fix(app/templates): handle special characters in mustache templates [EE-3708] (#7288)

pull/7270/head
LP B 2 years ago committed by GitHub
parent 43600083a7
commit 95f4db4f48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -68,5 +68,5 @@ export function renderTemplate(
)
);
return Mustache.render(template, state);
return Mustache.render(template, state, undefined, { escape: (t) => t });
}

Loading…
Cancel
Save