mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
UI – capitalize and align status icon in Automations column (#14095)
This commit is contained in:
parent
433212dfed
commit
1524510e89
1
changes/14087-status-indicator-alignment
Normal file
1
changes/14087-status-indicator-alignment
Normal file
@ -0,0 +1 @@
|
||||
- Fix small copy and alignment issue with status indicators in the Queries page Automations column
|
@ -50,7 +50,7 @@ const StatusIndicator = ({
|
||||
data-for={`status-${tooltipId}`}
|
||||
data-tip-disable={false}
|
||||
>
|
||||
{value}
|
||||
<span>{value}</span>
|
||||
</span>
|
||||
<ReactTooltip
|
||||
className="status-tooltip"
|
||||
@ -65,7 +65,7 @@ const StatusIndicator = ({
|
||||
</>
|
||||
);
|
||||
} else {
|
||||
indicatorContent = <>{value}</>;
|
||||
indicatorContent = <span>{value}</span>;
|
||||
}
|
||||
return <span className={indicatorClassNames}>{indicatorContent}</span>;
|
||||
};
|
||||
|
@ -14,7 +14,6 @@
|
||||
margin-right: $pad-small;
|
||||
height: 8px;
|
||||
width: 8px;
|
||||
margin-bottom: 1px;
|
||||
}
|
||||
|
||||
// host status
|
||||
|
Loading…
Reference in New Issue
Block a user