ensure loading screen is only shown if we havent already rendered some bounties
This commit is contained in:
parent
a20209e6c7
commit
6e9a72a4b5
|
@ -335,7 +335,9 @@
|
||||||
[:div.bg-white.br3.shadow-6.pa4.tc
|
[:div.bg-white.br3.shadow-6.pa4.tc
|
||||||
[:h3 "Please log in to view this page."]]
|
[:h3 "Please log in to view this page."]]
|
||||||
|
|
||||||
(or (nil? @owner-bounties-loading?) @owner-bounties-loading?)
|
(and
|
||||||
|
(empty? @owner-bounties)
|
||||||
|
(or (nil? @owner-bounties-loading?) @owner-bounties-loading?))
|
||||||
[manage-payouts-loading]
|
[manage-payouts-loading]
|
||||||
|
|
||||||
:else
|
:else
|
||||||
|
|
Loading…
Reference in New Issue