Virginie Ky 4c6e50439d override dateFormats and getFilterType tests
Signed-off-by: Virginie Ky <virginie.ky@gmail.com>
2020-02-28 12:44:15 +01:00

13 lines
371 B
JavaScript

import { dateFormats } from 'strapi-helper-plugin';
const formats = {
...dateFormats,
// Customise the format by uncommenting the one you wan to override it corresponds to the type of your field
// date: 'dddd, MMMM Do YYYY',
// datetime: 'dddd, MMMM Do YYYY HH:mm',
// time: 'HH:mm A',
// timestamp: 'dddd, MMMM Do YYYY HH:mm',
};
export default formats;