summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/boards/filters/due_date_filters.js
blob: 70132dbfa6fa3f71f34ec2bf8487c0a0cb2b4cca (plain)
1
2
3
4
5
6
7
8
/* global dateFormat */

import Vue from 'vue';

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