Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
hide the filter by default to save space on "dashboard" displays
  • Loading branch information
jnovack committed Apr 1, 2018
commit 3c7daf83721e3cae8f6645a95794326e442a87a5
3 changes: 2 additions & 1 deletion src/vis-physical/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ var wrapper = vis.append('div')
.classed('wrapper', true);

let filterDiv = wrapper.append('div')
.attr('id', 'filter-wrapper');
.attr('id', 'filter-wrapper')
.classed('hide', true);

let filterInput = filterDiv.append('input')
.attr('id', 'filter')
Expand Down