diff --git a/install/package.json b/install/package.json index 3e8446284a..4a9cfa33a8 100644 --- a/install/package.json +++ b/install/package.json @@ -107,10 +107,10 @@ "nodebb-plugin-spam-be-gone": "2.3.2", "nodebb-plugin-web-push": "0.7.6", "nodebb-rewards-essentials": "1.0.2", - "nodebb-theme-harmony": "2.2.51", + "nodebb-theme-harmony": "2.2.52", "nodebb-theme-lavender": "7.1.21", "nodebb-theme-peace": "2.2.57", - "nodebb-theme-persona": "14.2.27", + "nodebb-theme-persona": "14.2.28", "nodebb-widget-essentials": "7.0.43", "nodemailer": "8.0.1", "nprogress": "0.2.0", diff --git a/public/src/client/groups/details.js b/public/src/client/groups/details.js index 39395258cb..7a6d2ba6f2 100644 --- a/public/src/client/groups/details.js +++ b/public/src/client/groups/details.js @@ -209,7 +209,9 @@ define('forum/groups/details', [ // Add icon selection interface iconBtn.on('click', function () { iconSelect.init(previewIcon, function () { - iconValueEl.val(previewIcon.val()); + const icon = previewIcon.val(); + previewIcon.toggleClass('hidden', !icon || icon === 'fa-nbb-none'); + iconValueEl.val(icon); }); });