Skip to content

Commit

Permalink
🐛 Application drawer, fix owner display (konveyor#1520)
Browse files Browse the repository at this point in the history
Pick the application owner name to display instead of the `Ref`.

Signed-off-by: Scott J Dickerson <[email protected]>
  • Loading branch information
sjd78 authored Nov 6, 2023
1 parent 3791d04 commit fdad869
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export const ApplicationDetailFields: React.FC<{
component={TextVariants.small}
className="pf-v5-u-color-200 pf-v5-u-font-weight-light"
>
{application?.owner ?? t("terms.notAvailable")}
{application?.owner?.name ?? t("terms.notAvailable")}
</Text>
<Title headingLevel="h3" size="md">
{t("terms.contributors")}
Expand Down

0 comments on commit fdad869

Please sign in to comment.