Skip to content

Commit

Permalink
Change page headlines to use h1 element. (#40637)
Browse files Browse the repository at this point in the history
  • Loading branch information
justinkambic authored Jul 11, 2019
1 parent 0166246 commit 3b058c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const MonitorPageTitleComponent = ({ data }: Props) =>
data && data.monitorPageTitle ? (
<EuiTitle size="xxs">
<EuiTextColor color="subdued">
<h4 data-test-subj="monitor-page-title">{data.monitorPageTitle.id}</h4>
<h1 data-test-subj="monitor-page-title">{data.monitorPageTitle.id}</h1>
</EuiTextColor>
</EuiTitle>
) : (
Expand Down
2 changes: 1 addition & 1 deletion x-pack/legacy/plugins/uptime/public/uptime_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ const Application = (props: UptimeAppProps) => {
>
<EuiFlexItem grow={false}>
<EuiTitle>
<h2>{headingText}</h2>
<h1>{headingText}</h1>
</EuiTitle>
</EuiFlexItem>
<EuiFlexItem grow={false}>
Expand Down

0 comments on commit 3b058c9

Please sign in to comment.