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

due_date_filters.js.es6 « filters « boards « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7e192e90fe64ab430662cf6b3915060a0067f96c (plain)
1
2
3
4
5
6
/* global Vue */

Vue.filter('due-date', (value) => {
  const date = new Date(value);
  return $.datepicker.formatDate('M d, yy', date);
});