Skip to content

Commit

Permalink
fixes tenant selector button
Browse files Browse the repository at this point in the history
  • Loading branch information
KelvinTegelaar committed Nov 18, 2023
1 parent bc2bf02 commit 67231c1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/utilities/TenantSelector.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,13 @@ const TenantSelector = ({ action, showAllTenantSelector = true, NavSelector = fa
<>
{NavSelector && (
<>
{currentTenant?.customerId !== 'AllTenants' ? (
<CippTenantOffcanvas tenant={currentTenant} buildingIcon={true} />
) : (
<FontAwesomeIcon icon={faBuilding} className="mx-2" />
)}
<CDropdown component="li" variant="nav-item" className="flex-grow-1 my-auto">
<CDropdownToggle>
{currentTenant?.customerId !== 'AllTenants' ? (
<CippTenantOffcanvas tenant={currentTenant} buildingIcon={true} />
) : (
<FontAwesomeIcon icon={faBuilding} className="mx-2" />
)}
{currentTenant?.defaultDomainName ? (
<>
<span className="text-wrap ms-2">{currentTenant.displayName}</span>
Expand Down

0 comments on commit 67231c1

Please sign in to comment.