mirror of
https://github.com/logseq/logseq.git
synced 2026-05-02 01:46:35 +00:00
fix: repeated tasks
1. Don't show repeat kinds selection (.+, ++, +) 2. Fixed wrong time (no zero padding) 3. Fixed `.+` and `++` behaviors
This commit is contained in:
@@ -132,7 +132,7 @@
|
||||
(map (fn [[k v]]
|
||||
(let [{:keys [date repetition]} v
|
||||
{:keys [year month day]} date
|
||||
day (js/parseInt (str year month day))]
|
||||
day (js/parseInt (str year (util/zero-pad month) (util/zero-pad day)))]
|
||||
(cond->
|
||||
(case k
|
||||
:scheduled
|
||||
|
||||
Reference in New Issue
Block a user