From b3b3e47acda14f8cea14a5cb45eb630d3b14ace0 Mon Sep 17 00:00:00 2001 From: pablodip Date: Thu, 25 Jan 2018 09:48:12 +0100 Subject: [PATCH] change no open bounties message --- src/cljs/commiteth/bounties.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cljs/commiteth/bounties.cljs b/src/cljs/commiteth/bounties.cljs index b034495..b79960b 100644 --- a/src/cljs/commiteth/bounties.cljs +++ b/src/cljs/commiteth/bounties.cljs @@ -211,7 +211,7 @@ [bounties-sort]] (if (empty? open-bounties) [:div.view-no-data-container - [:p "No recent activity yet"]] + [:p "No matching bounties found."]] (into [:div.ui.items] (for [bounty open-bounties] [bounty-item bounty])))])