-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Closed
Labels
Description
On dev branch I cant delete auditlogs and logs by date because datepicker locale for spanish language 'es' is not included in gulpfile.js and dateformat is in english format, but the AspNetCore culture is established as spanish, then the viewmodel cant be validated on controller and always show an error due wrong date format.
To avoid this issue I just added this line to gulp file:
function processScripts() {
return gulp
.src([....]
'./node_modules/bootstrap-datepicker/dist/locales/bootstrap-datepicker.es.min.js',
[...]
Thanks!!