Fleet UI: multiple unreleased and released bugs (#20951)

This commit is contained in:
RachelElysia 2024-08-01 15:53:43 -04:00 committed by GitHub
parent bf3d849bd0
commit e2fcb44d76
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 11 additions and 5 deletions

View file

@ -75,7 +75,7 @@ const Editor = ({
<TooltipWrapper
className={labelClassName}
tipContent={labelTooltip}
position="top"
position="top-start"
>
{labelText}
</TooltipWrapper>

View file

@ -99,6 +99,10 @@
flex-direction: column;
align-items: center;
gap: $pad-small;
&--message {
text-align: center;
}
}
&__button-wrap {

View file

@ -57,10 +57,10 @@
flex-direction: column;
align-items: center;
gap: $pad-small;
}
&__profile-graphic--message {
text-align: center;
&--message {
text-align: center;
}
}
&__button-wrap {

View file

@ -76,11 +76,13 @@ const getSoftwareNameCellData = (
iconUrl = app_store_app.icon_url;
}
const isAllTeams = teamId === undefined;
return {
name: softwareTitle.name,
source: softwareTitle.source,
path: softwareTitleDetailsPath,
hasPackage: hasPackage && !!teamId,
hasPackage: hasPackage && !isAllTeams,
isSelfService,
iconUrl,
};