Skip to content

Commit

Permalink
Fix spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
criamico committed Jun 13, 2024
1 parent e353bff commit d1ecfca
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ export const AgentPolicySummaryLine = memo<{
withDescription?: boolean;
}>(({ policy, agent, direction = 'row', withDescription = false }) => {
const { getHref } = useLink();

const { name, id, is_managed: isManaged, description } = policy;

const revision = agent ? agent.policy_revision : policy.revision;
Expand All @@ -50,6 +49,7 @@ export const AgentPolicySummaryLine = memo<{
{name || id}
</EuiLink>
</EuiFlexItem>

{isManaged && (
<EuiFlexItem grow={false}>
<EuiIconTip
Expand All @@ -69,6 +69,7 @@ export const AgentPolicySummaryLine = memo<{
)}
</EuiFlexGroup>
</EuiFlexItem>

{revision && (
<EuiFlexItem grow={false}>
<EuiText color="subdued" size="xs" style={NO_WRAP_WHITE_SPACE}>
Expand Down

0 comments on commit d1ecfca

Please sign in to comment.