Skip to content

Commit

Permalink
Refs #31495 - Remove unused title property
Browse files Browse the repository at this point in the history
This property is not populated or used anywhere.
  • Loading branch information
tbrisker authored and ezr-ondrej committed Dec 18, 2020
1 parent f53cc39 commit 1b7b7e9
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ class BreadcrumbBar extends React.Component {
return (
<div className="breadcrumb-bar">
<Breadcrumb
title
items={breadcrumbItems}
isTitle={isTitle}
titleReplacement={titleReplacement}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ exports[`BreadcrumbBar rendering renders breadcrumb-bar 1`] = `
},
]
}
title={true}
titleReplacement={null}
/>
<hr
Expand Down Expand Up @@ -53,7 +52,6 @@ exports[`BreadcrumbBar rendering renders switchable breadcrumb-bar 1`] = `
},
]
}
title={true}
titleReplacement={null}
>
<BreadcrumbSwitcher
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import './Breadcrumbs.scss';

const Breadcrumb = ({
items,
title,
isTitle,
titleReplacement,
children,
Expand Down Expand Up @@ -67,7 +66,6 @@ const Breadcrumb = ({

Breadcrumb.propTypes = {
children: PropTypes.node,
title: PropTypes.bool,
titleReplacement: PropTypes.string,
isTitle: PropTypes.bool,
items: PropTypes.arrayOf(
Expand All @@ -89,7 +87,6 @@ Breadcrumb.propTypes = {

Breadcrumb.defaultProps = {
children: null,
title: false,
isTitle: false,
items: [],
titleReplacement: null,
Expand Down

0 comments on commit 1b7b7e9

Please sign in to comment.