From f46ac8154c386b30f4951bdc9ee48e074dc3d28d Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Thu, 22 Sep 2016 22:30:01 +0300 Subject: [PATCH] Fix compatibility with latest funcool/cuerdas version. --- src/uxbox/main/ui/dashboard/images.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uxbox/main/ui/dashboard/images.cljs b/src/uxbox/main/ui/dashboard/images.cljs index 2318932c84..d7c4d67699 100644 --- a/src/uxbox/main/ui/dashboard/images.cljs +++ b/src/uxbox/main/ui/dashboard/images.cljs @@ -42,7 +42,7 @@ (defn- contains-term? [phrase term] - (str/contains? (str/lower phrase) (str/trim (str/lower term)))) + (str/includes? (str/lower phrase) (str/trim (str/lower term)))) (defn- filter-images-by [term projs]