Merge branch 'develop' into filter-boxes-vertical-alignment

This commit is contained in:
P 2018-02-15 08:41:21 +01:00 committed by GitHub
commit a253045787
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 3 deletions

View File

@ -87,10 +87,12 @@
::bounty-filter-type.category ::bounty-filter-type-category|multiple-dynamic-options ::bounty-filter-type.category ::bounty-filter-type-category|multiple-dynamic-options
::bounty-filter-type.re-frame-subs-key-for-options :commiteth.subscriptions/open-bounties-currencies ::bounty-filter-type.re-frame-subs-key-for-options :commiteth.subscriptions/open-bounties-currencies
::bounty-filter-type.predicate (fn [filter-value bounty] ::bounty-filter-type.predicate (fn [filter-value bounty]
(and (or (not-any? #{"ETH"} filter-value) (or (and (contains? #{"ETH"} filter-value)
(< 0 (:balance-eth bounty))) (< 0 (:balance-eth bounty)))
(set/subset? (->> filter-value (remove #{"ETH"}) set) (not-empty
(-> bounty :tokens keys set))))} (set/intersection
(->> filter-value (remove #{"ETH"}) set)
(-> bounty :tokens keys set)))))}
::bounty-filter-type|date ::bounty-filter-type|date
{::bounty-filter-type.name "Date" {::bounty-filter-type.name "Date"