summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/boards/filters/due_date_filters.js.es6
blob: 03425bb145b7588e689987357eeec78badea2915 (plain)
1
2
3
4
5
6
7
/* global Vue */
/* global dateFormat */

Vue.filter('due-date', (value) => {
  const date = new Date(value);
  return dateFormat(date, 'mmm d, yyyy', true);
});