Skip to content

Commit e3b7658

Browse files
authored
🐛 Fallback to tag category name for empty categories (#1855)
Resolves: https://issues.redhat.com/browse/MTA-2186 Signed-off-by: Radoslaw Szwajkowski <[email protected]>
1 parent d8d1ede commit e3b7658

File tree

1 file changed

+1
-1
lines changed
  • client/src/app/pages/controls/tags

1 file changed

+1
-1
lines changed

client/src/app/pages/controls/tags/tags.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ export const Tags: React.FC = () => {
191191
?.map((tag) => tag.name)
192192
.concat(tagCategoryNames)
193193
.join("");
194-
return tagNames || "";
194+
return tagNames || tagCategoryNames || "";
195195
},
196196
selectOptions: dedupeFunction(
197197
tagCategories

0 commit comments

Comments
 (0)