mirror of
https://github.com/balzack/databag.git
synced 2025-02-15 04:59:16 +00:00
fixed es warnings
This commit is contained in:
parent
8330ad32e1
commit
e550cf4d2b
@ -48,7 +48,7 @@ export function Cards({ closeCards, openContact, openListing }) {
|
|||||||
<CardItem item={item} open={openContact} />
|
<CardItem item={item} open={openContact} />
|
||||||
)} />
|
)} />
|
||||||
)}
|
)}
|
||||||
{ state.cards.length == 0 && (
|
{ state.cards.length === 0 && (
|
||||||
<div class="empty">No Contacts</div>
|
<div class="empty">No Contacts</div>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
@ -54,7 +54,7 @@ export function Channels({ open, active }) {
|
|||||||
)}
|
)}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
{ state.channels.length == 0 && (
|
{ state.channels.length === 0 && (
|
||||||
<div class="empty">No Topics</div>
|
<div class="empty">No Topics</div>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
@ -48,7 +48,7 @@ export function Listing({ closeListing, openContact }) {
|
|||||||
<ListingItem item={item} node={state.node} open={openContact} />
|
<ListingItem item={item} node={state.node} open={openContact} />
|
||||||
)} />
|
)} />
|
||||||
)}
|
)}
|
||||||
{ state.contacts.length == 0 && (
|
{ state.contacts.length === 0 && (
|
||||||
<div class="empty">No Contacts</div>
|
<div class="empty">No Contacts</div>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user