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