Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Backport 1.1] Remove logos for page examples #754

Merged
merged 1 commit into from
May 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src-docs/src/views/page/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ export default () => (
<OuiPageSideBar>SideBar nav</OuiPageSideBar>
<OuiPageBody>
<OuiPageHeader
iconType="logoOpenSearch"
pageTitle="Page title"
rightSideItems={[
<OuiButton fill>Add something</OuiButton>,
Expand Down
1 change: 0 additions & 1 deletion src-docs/src/views/page/page_bottom_bar_template.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ export default ({ button = <></>, content, sideNav, bottomBar }) => {
<OuiPageTemplate
pageSideBar={sideNav}
pageHeader={{
iconType: 'logoOpenSearch',
pageTitle: 'Page title',
rightSideItems: [button],
}}
Expand Down
1 change: 0 additions & 1 deletion src-docs/src/views/page/page_centered_content_template.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ export default ({ button = <></>, content, sideNav }) => (
pageContentProps={{ paddingSize: 'none' }}
pageSideBar={sideNav}
pageHeader={{
iconType: 'logoOpenSearch',
pageTitle: 'Page title',
rightSideItems: [button],
}}>
Expand Down
1 change: 0 additions & 1 deletion src-docs/src/views/page/page_custom_content_template.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ export default ({ button = <></> }) => (
restrictWidth={false}
template="empty"
pageHeader={{
iconType: 'logoOpenSearch',
pageTitle: 'Page title',
rightSideItems: [button, <OuiButton>Do something</OuiButton>],
}}>
Expand Down
1 change: 0 additions & 1 deletion src-docs/src/views/page/page_restricting_width_template.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ export default ({ button = <></>, content, sideNav }) => {
pageSideBar={sideNav}
restrictWidth="75%"
pageHeader={{
iconType: 'logoOpenSearch',
pageTitle: 'Page title',
rightSideItems: [button],
description: 'Restricting the width to 75%.',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ export default ({ button = <></>, content }) => (
template="centeredContent"
pageContentProps={{ paddingSize: 'none' }}
pageHeader={{
iconType: 'logoOpenSearch',
pageTitle: 'Page title',
rightSideItems: [button],
}}>
Expand Down
1 change: 0 additions & 1 deletion src-docs/src/views/page/page_template.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ export default ({ button = <></>, content, sideNav }) => {
pageSideBar={sideNav}
bottomBar={showBottomBar ? 'Bottom bar' : undefined}
pageHeader={{
iconType: 'logoOpenSearch',
pageTitle: 'Page title',
rightSideItems: [button],
tabs: [
Expand Down