mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
fix not showing install software when there was software titles (#23352)
relates to #23321 fix that shows the add install software UI when there is software to install.
This commit is contained in:
parent
2e3bd410da
commit
f73cb371bc
1 changed files with 1 additions and 1 deletions
|
|
@ -65,7 +65,7 @@ const InstallSoftware = ({ currentTeamId }: IInstallSoftwareProps) => {
|
|||
return <DataError />;
|
||||
}
|
||||
|
||||
if (softwareTitles === null) {
|
||||
if (softwareTitles || softwareTitles === null) {
|
||||
return (
|
||||
<div className={`${baseClass}__content`}>
|
||||
<AddInstallSoftware
|
||||
|
|
|
|||
Loading…
Reference in a new issue