Skip to content

Commit

Permalink
Fix after review
Browse files Browse the repository at this point in the history
  • Loading branch information
nchaulet committed Mar 17, 2020
1 parent f654254 commit c64589d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ export const AgentListPage: React.FunctionComponent<{}> = () => {
</EuiFlexItem>
{agent.config_revision && (
<EuiFlexItem grow={false}>
<EuiText color="default" size="xs" style={{ whiteSpace: 'nowrap' }}>
<EuiText color="default" size="xs" className="eui-textNoWrap">
<FormattedMessage
id="xpack.ingestManager.agentList.revisionNumber"
defaultMessage="rev. {revNumber}"
Expand All @@ -329,8 +329,8 @@ export const AgentListPage: React.FunctionComponent<{}> = () => {
agent.config_newest_revision &&
agent.config_newest_revision > agent.config_revision && (
<EuiFlexItem grow={false}>
<EuiText color="subdued" size="xs" style={{ whiteSpace: 'nowrap' }}>
<EuiIcon size={'m'} type={'alert'} color="warning" />
<EuiText color="subdued" size="xs" className="eui-textNoWrap" n>
<EuiIcon size="m" type="alert" color="warning" />
&nbsp;
{true && (
<>
Expand Down

0 comments on commit c64589d

Please sign in to comment.