Commit 873c0b53 authored by GitLab Bot's avatar GitLab Bot

Automatic merge of gitlab-org/gitlab-ce master

parents b7e84e84 33a9c35b
......@@ -3,7 +3,12 @@ import dateFormat from 'dateformat';
import { GlTooltip } from '@gitlab/ui';
import Icon from '~/vue_shared/components/icon.vue';
import { __ } from '~/locale';
import { getDayDifference, getTimeago, dateInWords } from '~/lib/utils/datetime_utility';
import {
getDayDifference,
getTimeago,
dateInWords,
parsePikadayDate,
} from '~/lib/utils/datetime_utility';
export default {
components: {
......@@ -54,7 +59,7 @@ export default {
return standardDateFormat;
},
issueDueDate() {
return new Date(this.date);
return parsePikadayDate(this.date);
},
timeDifference() {
const today = new Date();
......
---
title: Use 'parsePikadayDate' to parse due date string
merge_request: 24045
author:
type: fixed
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