Skip to content

Commit

Permalink
Refs #37217 - Install package tab & FQDN setting
Browse files Browse the repository at this point in the history
Use host.display_name instead of host.hostname
  • Loading branch information
stejskalleos authored and jeremylenz committed May 20, 2024
1 parent d704d90 commit 1494c01
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ export const PackagesTab = () => {
closeModal={closeModal}
hostId={hostId}
key={hostId}
hostName={hostname}
hostName={hostDetails.display_name}
triggerPackageInstall={triggerPackageInstall}
/>
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ const renderOptions = (facetAttributes = contentFacetAttributes) => ({
id: 1,
name: 'test-host',
content_facet_attributes: { ...facetAttributes },
display_name: 'test-host',
},
status: 'RESOLVED',
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ const renderOptions = (facetAttributes = contentFacetAttributes) => ({
id: 1,
name: hostname,
content_facet_attributes: { ...facetAttributes },
display_name: hostname,
},
status: 'RESOLVED',
},
Expand Down

0 comments on commit 1494c01

Please sign in to comment.