Skip to content

Commit

Permalink
Adding check to make sure the agg is a bucket
Browse files Browse the repository at this point in the history
  • Loading branch information
simianhacker committed Dec 30, 2014
1 parent e6fb1ce commit 038743c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kibana/components/agg_table/agg_table.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ define(function (require) {
var field = agg.field();
var formattedColumn = {
title: col.title,
filterable: field && field.filterable
filterable: field && field.filterable && agg.schema.group === 'buckets'
};

var last = i === (table.columns.length - 1);
Expand Down

0 comments on commit 038743c

Please sign in to comment.