Skip to content
This repository was archived by the owner on May 4, 2019. It is now read-only.

Commit 34578d8

Browse files
authored
Merge branch 'dev' into feat/fix-default-selected
2 parents 626d14c + cb89b0f commit 34578d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Revisions/RevisionUtilities.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import * as moment from "moment";
22

33
export function getLongDateFormat(val: string): string {
4-
return moment(val).format("lll");
4+
return moment.utc(val).format("lll");
55
}
66

77
export function getShortDateFormat(val: string): string {
8-
return moment(val).format("l");
8+
return moment.utc(val).format("l");
99
}

0 commit comments

Comments
 (0)