forked from M-Labs/web2019
Do not show groups when there are search results
Signed-off-by: Egor Savkin <es@m-labs.hk>
This commit is contained in:
parent
9b15e472a6
commit
e279c024f4
|
@ -19,6 +19,7 @@ export function Backlog() {
|
|||
|
||||
const onClickToggleMobileSideMenu = useShopStore((state) => state.switchSideMenu);
|
||||
const isMobile = useShopStore((state) => state.isMobile);
|
||||
const showSearch = useShopStore((state) => state.listed_cards.length > 0);
|
||||
|
||||
// #!render_count
|
||||
console.log("Backlog renders: ", renderCount)
|
||||
|
@ -48,11 +49,7 @@ export function Backlog() {
|
|||
) : null}
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<BacklogSearchResult/>
|
||||
|
||||
<BacklogGroups/>
|
||||
{showSearch ? <BacklogSearchResult/> : <BacklogGroups/>}
|
||||
|
||||
{provided.placeholder && (
|
||||
<div style={{display: 'none'}}>
|
||||
|
|
Loading…
Reference in New Issue