mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
Fix MDM solution name filter text (#7287)
This commit is contained in:
parent
e2022c67db
commit
1a5e1ff56e
1 changed files with 1 additions and 1 deletions
|
|
@ -1264,7 +1264,7 @@ const ManageHostsPage = ({
|
|||
const renderMDMSolutionFilterBlock = () => {
|
||||
if (mdmSolutionDetails) {
|
||||
const { name, server_url } = mdmSolutionDetails;
|
||||
const buttonText = `${name !== "Unknown" && name} ${server_url}`;
|
||||
const buttonText = name ? `${name} ${server_url}` : `${server_url}`;
|
||||
return (
|
||||
<div className={`${baseClass}__mdm-solution-filter-block`}>
|
||||
<div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue