diff --git a/install/package.json b/install/package.json index 696f3678d9..ec5afa87f4 100644 --- a/install/package.json +++ b/install/package.json @@ -103,7 +103,7 @@ "nodebb-plugin-ntfy": "1.7.3", "nodebb-plugin-spam-be-gone": "2.2.0", "nodebb-rewards-essentials": "1.0.0", - "nodebb-theme-harmony": "1.2.13", + "nodebb-theme-harmony": "1.2.14", "nodebb-theme-lavender": "7.1.7", "nodebb-theme-peace": "2.2.0", "nodebb-theme-persona": "13.3.3", diff --git a/public/language/en-GB/global.json b/public/language/en-GB/global.json index 15189a02ca..c0c565a131 100644 --- a/public/language/en-GB/global.json +++ b/public/language/en-GB/global.json @@ -32,6 +32,7 @@ "pagination.out-of": "%1 out of %2", "pagination.enter-index": "Go to post index", + "header.brand-logo": "Brand Logo", "header.admin": "Admin", "header.categories": "Categories", "header.recent": "Recent", diff --git a/src/topics/teaser.js b/src/topics/teaser.js index 1ebf1d2fb1..7336d0a0ae 100644 --- a/src/topics/teaser.js +++ b/src/topics/teaser.js @@ -70,7 +70,9 @@ module.exports = function (Topics) { }); await Promise.all(postData.map(p => posts.parsePost(p))); - const { tags } = await plugins.hooks.fire('filter:teasers.configureStripTags', { tags: utils.stripTags.slice(0) }); + const { tags } = await plugins.hooks.fire('filter:teasers.configureStripTags', { + tags: utils.stripTags.slice(0), + }); const teasers = topics.map((topic, index) => { if (!topic) {