From feb968780afb7b39a82f09dbae792fe445e8040c Mon Sep 17 00:00:00 2001 From: Sami Mazouz Date: Sun, 14 May 2023 21:34:34 +0100 Subject: [PATCH] fix(regression): missing `TagsLabel` class Signed-off-by: Sami Mazouz --- extensions/tags/js/src/common/helpers/tagsLabel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/tags/js/src/common/helpers/tagsLabel.js b/extensions/tags/js/src/common/helpers/tagsLabel.js index e32d4ced2..b9580e845 100644 --- a/extensions/tags/js/src/common/helpers/tagsLabel.js +++ b/extensions/tags/js/src/common/helpers/tagsLabel.js @@ -7,7 +7,7 @@ export default function tagsLabel(tags, attrs = {}) { const children = []; const { link, ...otherAttrs } = attrs; - attrs.className = classList('TagsLabel', attrs.className); + otherAttrs.className = classList('TagsLabel', otherAttrs.className); if (tags) { sortTags(tags).forEach((tag) => {