Removed search from Notifications page

• Removed:
- search from Notifications page
This commit is contained in:
mgabdev
2020-10-29 23:36:09 -05:00
parent f6e3a9ad96
commit 083218648a
3 changed files with 7 additions and 0 deletions

View File

@@ -38,6 +38,7 @@ class Layout extends React.PureComponent {
showGlobalFooter,
tabs,
title,
noSearch,
} = this.props
const mainBlockClasses = CX({
@@ -63,6 +64,7 @@ class Layout extends React.PureComponent {
tabs={tabs}
title={title}
showBackBtn={showBackBtn}
noSearch={noSearch}
/>
}
{
@@ -175,6 +177,7 @@ Layout.propTypes = {
showBackBtn: PropTypes.bool,
showLinkFooterInSidebar: PropTypes.bool,
showGlobalFooter: PropTypes.bool,
noSearch: PropTypes.bool,
tabs: PropTypes.array,
title: PropTypes.string,
}