Skip to content

Commit

Permalink
[nested-grid] Improve default cell function
Browse files Browse the repository at this point in the history
  • Loading branch information
kimo-k committed Sep 4, 2024
1 parent 80e4784 commit 67a745a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/re_com/nested_grid.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -447,10 +447,10 @@
(reduce rf ""))
" [end]"))))

(defn cell-part [{:keys [column-path row-path]}]
nil)
(defn cell-part [{:keys [value]}]
(str value))

(defn cell-wrapper-part [{:keys [column-path row-path theme children] :as props}]
(defn cell-wrapper-part [{:keys [column-path row-path theme children]}]
(into
[:div
(-> {:style {:grid-column (path->grid-line-name column-path)
Expand Down

0 comments on commit 67a745a

Please sign in to comment.