Skip to content
This repository has been archived by the owner on Mar 25, 2023. It is now read-only.

Commit

Permalink
fix(snapshots): date bug (#1489)
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladimir Shakhov authored Dec 13, 2018
1 parent 7ba497c commit 0503a13
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ export class SnapshotFilterContainerComponent extends WithUnsubscribe() implemen
const accounts = params['accounts'];
const vms = params['vms'];
const volumeSnapshotTypes = params['types'];
const date = params['date'];
const date = moment(params['date']).toDate();
const groupings = params['groupings'].reduce((acc, _) => {
const grouping = this.groupings.find(g => g.key === _);
if (grouping) {
Expand Down

0 comments on commit 0503a13

Please sign in to comment.