diff --git a/frontend/src/utils/form/datepicker.js b/frontend/src/utils/form/datepicker.js index 477a83b39..5c13b63a4 100644 --- a/frontend/src/utils/form/datepicker.js +++ b/frontend/src/utils/form/datepicker.js @@ -4,12 +4,6 @@ import { Utility } from '../../core/utility'; const FORM_DATE_FORMAT = 'yyyy-mm-dd"T"HH:MM:ss'; -/* TODO: -- DONE define a map of form id to instance lists -- DONE define a function that formats all dates of a form with a specified id -- WIP call this function where formdata appears in mass-input.js, async-form.js and async-table.js -*/ - const DATEPICKER_UTIL_SELECTOR = 'input[type="date"], input[type="time"], input[type="datetime-local"]'; const DATEPICKER_INITIALIZED_CLASS = 'datepicker--initialized';