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
4 changed files with 11 additions and 5 deletions
+1 -1
View File
@@ -75,7 +75,7 @@ const Editor = ({
<TooltipWrapper
className={labelClassName}
tipContent={labelTooltip}
position="top"
position="top-start"
>
{labelText}
</TooltipWrapper>
@@ -99,6 +99,10 @@
flex-direction: column;
align-items: center;
gap: $pad-small;
&--message {
text-align: center;
}
}
&__button-wrap {
@@ -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 {
@@ -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,
};