- fixed issue setting dates i ndatepicker;
- fixed styles and filters in tables;
This commit is contained in:
13
src/helpers/formatDateString.js
Normal file
13
src/helpers/formatDateString.js
Normal file
@@ -0,0 +1,13 @@
|
||||
/**
|
||||
*
|
||||
* @param date {Date}
|
||||
* @return {string}
|
||||
*/
|
||||
const formatDateString = (date) => {
|
||||
const year = date.getFullYear();
|
||||
const month = String(date.getMonth() + 1).padStart(2, '0');
|
||||
const day = String(date.getDate()).padStart(2, '0');
|
||||
return `${year}-${month}-${day}T00:00:00`;
|
||||
}
|
||||
|
||||
export default formatDateString;
|
||||
Reference in New Issue
Block a user