Welcome to mirror list, hosted at ThFree Co, Russian Federation.

due_date_filters.js « filters « boards « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a452d32ef15ad17b1697076d865daa7cbc0cd994 (plain)
1
2
3
4
5
6
7
import Vue from 'vue';
import dateFormat from '~/lib/dateformat';

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