Commit ffc136fa authored by qingwei.li's avatar qingwei.li Committed by Leopoldthecoder

TimeSelect: fix 00:00 is disabled, fixed #676

parent 904a7394
......@@ -113,7 +113,7 @@
while (compareTime(current, end) <= 0) {
result.push({
value: current,
disabled: compareTime(current, this.minTime || '00:00') <= 0
disabled: compareTime(current, this.minTime || '-1:-1') <= 0
});
current = nextTime(current, step);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment