From 4703f6d5c73b04ec59b85aca0de3995ac9d5f392 Mon Sep 17 00:00:00 2001 From: "alonso.torres" Date: Thu, 4 Feb 2021 15:29:19 +0100 Subject: [PATCH] :bug: Fixes problem with multiple selection --- common/app/common/attrs.cljc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/app/common/attrs.cljc b/common/app/common/attrs.cljc index 19f3f9acaf..3cb24a935c 100644 --- a/common/app/common/attrs.cljc +++ b/common/app/common/attrs.cljc @@ -59,8 +59,8 @@ ;; (let [new-val (get curr attr ::undefined) value (cond - (or (= new-val ::undefined) - (= new-val :multiple)) value + (= new-val ::undefined) value + (= new-val :multiple) :multiple (= value ::undefined) (sel new-val) (eqfn new-val value) value :else :multiple)]