Skip to content

Commit

Permalink
Ensure the schema is set
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisronline committed Dec 20, 2018
1 parent e0a2ddd commit 087afc6
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ export class EuiMonitoringTable extends React.PureComponent {
search.box['data-test-subj'] = 'monitoringTableToolBar';
}

if (search.box && !search.box.schema) {
search.box.schema = true;
}

const columns = _columns.map(column => {
if (!column['data-test-subj']) {
column['data-test-subj'] = 'monitoringTableHasData';
Expand Down

0 comments on commit 087afc6

Please sign in to comment.