Skip to content

Commit

Permalink
Fixed a couple issues
Browse files Browse the repository at this point in the history
  • Loading branch information
blfrantz committed Jul 12, 2018
1 parent 5f1fcf2 commit 841da96
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ describe('TabbedAggResponseWriter class', function () {
lte: 100
};

const writer = new TabbedAggResponseWriter(vis.getAggConfig().getResponseAggs(), {
const writer = new TabbedAggResponseWriter(vis.getAggConfig(), {
timeRange: {
'@timestamp': range
}
Expand All @@ -120,7 +120,7 @@ describe('TabbedAggResponseWriter class', function () {
it('to undefined if no nested object', function () {
const vis = new Vis(indexPattern, { type: 'histogram', aggs: [] });

const writer = new TabbedAggResponseWriter(vis.getAggConfig().getResponseAggs(), {
const writer = new TabbedAggResponseWriter(vis.getAggConfig(), {
timeRange: {}
});
expect(writer).to.have.property('timeRange', undefined);
Expand Down
2 changes: 1 addition & 1 deletion src/ui/public/agg_types/controls/drop_partials.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
 
<icon-tip
position="'right'"
content="'Remove buckets that span time outside the time range so the histogram doesn't start and end with incomplete buckets.'"
content="'Remove buckets that span time outside the time range so the histogram doesn\'t start and end with incomplete buckets.'"
></icon-tip>
</label>
</div>

0 comments on commit 841da96

Please sign in to comment.