You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
v5.39.0
My own situation,
After clicking the clear button, today’s date cannot be selected.
This is my own modification, please tell me if there is a problem with this modification
line 673:
this.input.val("" + (this.unset ? '' : this._dates[index].format(this.actualFormat)));
v5.39.0
My own situation,
After clicking the clear button, today’s date cannot be selected.
This is my own modification, please tell me if there is a problem with this modification
line 673:
this.input.val("" + (this.unset ? '' : this._dates[index].format(this.actualFormat)));
fix :
this.input.val("" + (this.unset ? '' : this.getMoment().format(this.actualFormat)));
The text was updated successfully, but these errors were encountered: