Skip to content

Commit

Permalink
🐛 Fallback to tag category name for empty categories (#1855) (#1857)
Browse files Browse the repository at this point in the history
Resolves: https://issues.redhat.com/browse/MTA-2186

Signed-off-by: Radoslaw Szwajkowski <rszwajko@redhat.com>
Signed-off-by: Cherry Picker <noreply@github.com>
  • Loading branch information
konveyor-ci-bot[bot] authored Apr 18, 2024
1 parent 7680aee commit 0282560
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/app/pages/controls/tags/tags.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ export const Tags: React.FC = () => {
?.map((tag) => tag.name)
.concat(tagCategoryNames)
.join("");
return tagNames || "";
return tagNames || tagCategoryNames || "";
},
selectOptions: dedupeFunction(
tagCategories
Expand Down

0 comments on commit 0282560

Please sign in to comment.