Update title copy and remove paragraph from body for empty index prompt. (#30093)

This commit is contained in:
Justin Kambic 2019-02-05 12:08:06 -05:00 committed by GitHub
parent ebd3a82643
commit bf6f419c28
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 26 deletions

View file

@ -109,13 +109,6 @@ exports[`EmptyState component doesn't render child components when count is fals
<EuiEmptyPrompt
body={
<React.Fragment>
<p>
<FormattedMessage
defaultMessage="There is no uptime data available."
id="xpack.uptime.emptyState.noDataDescription"
values={Object {}}
/>
</p>
<p>
<FormattedMessage
defaultMessage="{configureHeartbeatLink} to start logging uptime data."
@ -148,7 +141,7 @@ exports[`EmptyState component doesn't render child components when count is fals
>
<h3>
<FormattedMessage
defaultMessage="No Uptime Data"
defaultMessage="No uptime data available"
id="xpack.uptime.emptyState.noDataTitle"
values={Object {}}
/>
@ -179,11 +172,11 @@ exports[`EmptyState component doesn't render child components when count is fals
className="euiTitle euiTitle--large euiTitle euiTitle--medium"
>
<FormattedMessage
defaultMessage="No Uptime Data"
defaultMessage="No uptime data available"
id="xpack.uptime.emptyState.noDataTitle"
values={Object {}}
>
No Uptime Data
No uptime data available
</FormattedMessage>
</h3>
</EuiTitle>
@ -202,15 +195,6 @@ exports[`EmptyState component doesn't render child components when count is fals
<div
className="euiText euiText--medium"
>
<p>
<FormattedMessage
defaultMessage="There is no uptime data available."
id="xpack.uptime.emptyState.noDataDescription"
values={Object {}}
>
There is no uptime data available.
</FormattedMessage>
</p>
<p>
<FormattedMessage
defaultMessage="{configureHeartbeatLink} to start logging uptime data."

View file

@ -15,19 +15,13 @@ export const EmptyIndex = (props: any) => (
<h3>
<FormattedMessage
id="xpack.uptime.emptyState.noDataTitle"
defaultMessage="No Uptime Data"
defaultMessage="No uptime data available"
/>
</h3>
</EuiTitle>
}
body={
<Fragment>
<p>
<FormattedMessage
id="xpack.uptime.emptyState.noDataDescription"
defaultMessage="There is no uptime data available."
/>
</p>
<p>
<FormattedMessage
id="xpack.uptime.emptyState.configureHeartbeatToGetStartedMessage"