diff --git a/brewman/static/app/overlord.config.ts b/brewman/static/app/overlord.config.ts index bd63ea73..0f162559 100644 --- a/brewman/static/app/overlord.config.ts +++ b/brewman/static/app/overlord.config.ts @@ -6,14 +6,6 @@ export function configureApp() { .config(['$httpProvider', function ($httpProvider) { $httpProvider.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest'; }]) - .config(['$mdDateLocaleProvider', function ($mdDateLocaleProvider) { - $mdDateLocaleProvider.formatDate = function (date) { - return !angular.isUndefined(date) ? moment(date).format('DD-MMM-YYYY') : ""; - }; - $mdDateLocaleProvider.parseDate = function (date) { - return moment(date, 'DD-MMM-YYYY').toDate(); - }; - }]) .config(['$httpProvider', function ($httpProvider) { $httpProvider.interceptors.push('responseInterceptor'); }])