mirror of
https://github.com/balzack/databag.git
synced 2025-02-14 12:39:17 +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} />
|
||||
)} />
|
||||
)}
|
||||
{ state.cards.length == 0 && (
|
||||
{ state.cards.length === 0 && (
|
||||
<div class="empty">No Contacts</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>
|
||||
|
@ -48,7 +48,7 @@ export function Listing({ closeListing, openContact }) {
|
||||
<ListingItem item={item} node={state.node} open={openContact} />
|
||||
)} />
|
||||
)}
|
||||
{ state.contacts.length == 0 && (
|
||||
{ state.contacts.length === 0 && (
|
||||
<div class="empty">No Contacts</div>
|
||||
)}
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user