mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 11:16:39 -05:00
Don't append ":00" to the date now that we're using flatpickr
This commit is contained in:
parent
6237b500ff
commit
fa9a9fd263
1 changed files with 1 additions and 1 deletions
2
resources/assets/js/dashboard.js
vendored
2
resources/assets/js/dashboard.js
vendored
|
@ -361,7 +361,7 @@ function editItemInit() {
|
||||||
$datePickers.each(function() {
|
$datePickers.each(function() {
|
||||||
const $this = $(this),
|
const $this = $(this),
|
||||||
column = $this.attr("id"),
|
column = $this.attr("id"),
|
||||||
value = $this.val() + ":00";
|
value = $this.val();
|
||||||
|
|
||||||
addFormData(column, value);
|
addFormData(column, value);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue