Skip to content

Commit

Permalink
[Fleet] added missing change to show Monitor logs/metrics as Enabled/…
Browse files Browse the repository at this point in the history
…Disabled (#129165)
  • Loading branch information
juliaElastic authored Apr 1, 2022
1 parent a45c0aa commit 6e01ddb
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -146,12 +146,12 @@ export const AgentDetailsOverviewSection: React.FunctionComponent<{
agentPolicy?.monitoring_enabled?.includes('logs') ? (
<FormattedMessage
id="xpack.fleet.agentList.monitorLogsEnabledText"
defaultMessage="True"
defaultMessage="Enabled"
/>
) : (
<FormattedMessage
id="xpack.fleet.agentList.monitorLogsDisabledText"
defaultMessage="False"
defaultMessage="Disabled"
/>
)
) : null,
Expand All @@ -164,12 +164,12 @@ export const AgentDetailsOverviewSection: React.FunctionComponent<{
agentPolicy?.monitoring_enabled?.includes('metrics') ? (
<FormattedMessage
id="xpack.fleet.agentList.monitorMetricsEnabledText"
defaultMessage="True"
defaultMessage="Enabled"
/>
) : (
<FormattedMessage
id="xpack.fleet.agentList.monitorMetricsDisabledText"
defaultMessage="False"
defaultMessage="Disabled"
/>
)
) : null,
Expand Down

0 comments on commit 6e01ddb

Please sign in to comment.