diff --git a/install/package.json b/install/package.json index d1d8cdc351..2e87106617 100644 --- a/install/package.json +++ b/install/package.json @@ -108,10 +108,10 @@ "nodebb-plugin-spam-be-gone": "2.3.2", "nodebb-plugin-web-push": "0.7.7", "nodebb-rewards-essentials": "1.0.2", - "nodebb-theme-harmony": "2.2.48", + "nodebb-theme-harmony": "2.2.50", "nodebb-theme-lavender": "7.1.21", "nodebb-theme-peace": "2.2.56", - "nodebb-theme-persona": "14.2.25", + "nodebb-theme-persona": "14.2.27", "nodebb-widget-essentials": "7.0.43", "nodemailer": "8.0.1", "nprogress": "0.2.0", diff --git a/public/src/client/account/tags.js b/public/src/client/account/tags.js index 2ff916712c..688e5e19c4 100644 --- a/public/src/client/account/tags.js +++ b/public/src/client/account/tags.js @@ -11,10 +11,12 @@ define('forum/account/tags', [ const tagEl = $('[component="tags/watch"]'); tagEl.tagsinput({ - tagClass: 'badge text-bg-info', + tagClass: 'badge rounded-1', confirmKeys: [13, 44], trimValue: true, }); + const tagsinput = tagEl.siblings('.bootstrap-tagsinput'); + tagsinput.addClass('tag-list'); const input = tagEl.siblings('.bootstrap-tagsinput').find('input'); input.translateAttr('aria-label', '[[aria:user-watched-tags]]'); autocomplete.tag(input);