change(ui) - project dropdown color

This commit is contained in:
Shekar Siri 2022-08-25 15:36:37 +02:00
parent 2bf29c5b3a
commit a2c2c46f7f

View file

@ -88,7 +88,7 @@ export default class SiteDropdown extends React.PureComponent {
{!showCurrent && <li>{'Project selection is not applicable.'}</li>}
{sites.map((site) => (
<li key={site.id} onClick={() => this.switchSite(site.id)}>
<Icon name="circle" size="8" marginRight="10" color={STATUS_COLOR_MAP[site.status]} />
<div className="w-2 h-2 rounded-full mr-3" style={{ backgroundColor: STATUS_COLOR_MAP[site.status] }} />
{site.host}
</li>
))}