default to 15 minutes for queries

pull/306/head
Jade McGough 2016-10-31 22:47:52 -07:00
parent 3891b0e24a
commit 7b252d3cdc
1 changed files with 2 additions and 2 deletions

View File

@ -18,11 +18,11 @@ export const HostPage = React.createClass({
},
getInitialState() {
const pastHourIndex = 2;
const fifteenMinutesIndex = 1;
return {
layouts: [],
timeRange: timeRanges[pastHourIndex],
timeRange: timeRanges[fifteenMinutesIndex],
};
},