mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
Fleet UI: multiple unreleased and released bugs (#20951)
This commit is contained in:
parent
bf3d849bd0
commit
e2fcb44d76
4 changed files with 11 additions and 5 deletions
|
|
@ -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,
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue