Commit 84203916 authored by Alfredo Sumaran's avatar Alfredo Sumaran Committed by Regis

Merge branch 'issue_27317' into 'master'

Fix timezone on issue boards due date

Closes #27317

See merge request !9150
parent 93ac8db8
/* global Vue */
/* global dateFormat */
Vue.filter('due-date', (value) => {
const date = new Date(value);
return $.datepicker.formatDate('M d, yy', date);
return dateFormat(date, 'mmm d, yyyy', true);
});
---
title: Fix timezone on issue boards due date
merge_request:
author:
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment