Skip to content

Commit

Permalink
Fix bug in match function
Browse files Browse the repository at this point in the history
  • Loading branch information
prabhanshuguptagit committed Jul 17, 2024
1 parent 4cb1cc0 commit ca17cd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bean/functions.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
(when (and from-frame to-frame)
(let [first-match
(reduce
#(if (get %1 %2)
#(if (get %1 (:representation (util/get-cell (:grid sheet) %2)))
%1
(assoc %1 (:representation (util/get-cell (:grid sheet) %2)) %2))
{}
Expand Down

0 comments on commit ca17cd6

Please sign in to comment.