There was an error while loading. Please reload this page.
1 parent 4f09f69 commit a3a93e8Copy full SHA for a3a93e8
project.clj
@@ -1,4 +1,4 @@
1
-(defproject org.clojars.intception/om-widgets "0.3.45"
+(defproject org.clojars.intception/om-widgets "0.3.46"
2
:description "Widgets for OM/React"
3
:url "https://github.com/orgs/intception/"
4
:license {:name "Eclipse Public License"
src/om_widgets/datepicker.cljs
@@ -60,7 +60,7 @@
60
currrent-days (build-current-month-days date)
61
next-days (build-next-month-days date)
62
days (into [] (concat previous-days currrent-days next-days))]
63
- (subvec (mapv vec (partition 7 days)) 0 6)))
+ (take 6 (mapv vec (partition 7 days)))))
64
65
(defn- day-header [day]
66
(om/component
0 commit comments