FIX: allows global_notice site setting to contain html (#8622)

This commit is contained in:
Joffrey JAFFEUX 2019-12-29 18:29:41 +01:00 committed by GitHub
parent 7200653e16
commit df465ed0be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ export default Component.extend({
) { ) {
notices.push( notices.push(
Notice.create({ Notice.create({
text: this.siteSettings.global_notice, text: this.siteSettings.global_notice.htmlSafe(),
id: "alert-global-notice" id: "alert-global-notice"
}) })
); );