Do not show save filter if no filter is selected
This commit is contained in:
parent
c21475a0fc
commit
796d1fc0e0
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ const SearchBar: React.FC<SearchBarProps> = props => {
|
|||
search={search}
|
||||
onSearchChange={handleSearchChange}
|
||||
/>
|
||||
{!!search || (tabs && tabs.length > 0) ? (
|
||||
{!!search || (tabs && tabs.length > 0 && currentTab !== 0) ? (
|
||||
<div className={classes.tabActionContainer}>
|
||||
<div className={classes.tabAction}>
|
||||
{isCustom ? (
|
||||
|
|
Loading…
Reference in a new issue