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

pull/7270/head
LP B 2022-07-19 14:05:18 +02:00 committed by GitHub
parent 43600083a7
commit 95f4db4f48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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