We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c8219e commit a561831Copy full SHA for a561831
lib/column/date_helpers.go
@@ -25,7 +25,7 @@ import (
25
const secInDay = 24 * 60 * 60
26
27
func dateOverflow(min, max, v time.Time, format string) error {
28
- if v.Before(min) || v.After(max) {
+ if !v.IsZero() && (v.Before(min) || v.After(max)) {
29
return &DateOverflowError{
30
Min: min,
31
Max: max,
0 commit comments