fix missing import of timeWeek which would cause errors in prometheus graphs with deployments

This commit is contained in:
Mike Greiling 2018-01-04 12:25:48 -06:00
parent 58a705aaac
commit e3f215f676
No known key found for this signature in database
GPG key ID: 0303DF507FA67596

View file

@ -1,8 +1,18 @@
import { timeFormat as time } from 'd3-time-format';
import { timeSecond, timeMinute, timeHour, timeDay, timeMonth, timeYear } from 'd3-time';
import { timeSecond, timeMinute, timeHour, timeDay, timeWeek, timeMonth, timeYear } from 'd3-time';
import { bisector } from 'd3-array';
const d3 = { time, bisector, timeSecond, timeMinute, timeHour, timeDay, timeMonth, timeYear };
const d3 = {
time,
bisector,
timeSecond,
timeMinute,
timeHour,
timeDay,
timeWeek,
timeMonth,
timeYear,
};
export const dateFormat = d3.time('%b %-d, %Y');
export const timeFormat = d3.time('%-I:%M%p');