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
Torch javascript creates Pikaday objects without forcing a format definition, from torch.js: new Pikaday({field: field, theme: 'torch-datepicker'})
This means that some client configurations will have other date formats as default and break the filter code, for example, in my machine Pikaday will return this format: Thu Apr 09 2020.
The solution seems to be by adding the format field they support during object creation.
The text was updated successfully, but these errors were encountered:
Torch javascript creates
Pikaday
objects without forcing a format definition, fromtorch.js
:new Pikaday({field: field, theme: 'torch-datepicker'})
This means that some client configurations will have other date formats as default and break the filter code, for example, in my machine Pikaday will return this format:
Thu Apr 09 2020
.The solution seems to be by adding the
format
field they support during object creation.The text was updated successfully, but these errors were encountered: