fixed long standing time and calender bug
This commit is contained in:
@@ -85,7 +85,7 @@ export default {
|
|||||||
//this tortuous fuckery is required so that the input and change events only fire on a real change, not initial page load
|
//this tortuous fuckery is required so that the input and change events only fire on a real change, not initial page load
|
||||||
//also it shouldn't signal a change if the values are the same and nothing was effectively changed
|
//also it shouldn't signal a change if the values are the same and nothing was effectively changed
|
||||||
var hasChanged = false;
|
var hasChanged = false;
|
||||||
if (this.oldDate != null && this.date != this.oldDate) {
|
if (this.date != this.oldDate) {
|
||||||
hasChanged = true;
|
hasChanged = true;
|
||||||
}
|
}
|
||||||
this.oldDate = this.date;
|
this.oldDate = this.date;
|
||||||
|
|||||||
Reference in New Issue
Block a user