Don't append ":00" to the date now that we're using flatpickr

This commit is contained in:
Kevin MacMartin 2019-07-17 01:21:00 -04:00
parent 6237b500ff
commit fa9a9fd263

View file

@ -361,7 +361,7 @@ function editItemInit() {
$datePickers.each(function() {
const $this = $(this),
column = $this.attr("id"),
value = $this.val() + ":00";
value = $this.val();
addFormData(column, value);
});