Skip to content

Commit

Permalink
Merge pull request #446 from EverythingMe/fix/unicode_in_annotation
Browse files Browse the repository at this point in the history
Fix #443: open table when searching & don't hide columns
  • Loading branch information
arikfr committed Jun 5, 2015
2 parents 3b4af1b + 8441c12 commit b17080a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rd_ui/app/views/query.html
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ <h2>
<div class="table-name" ng-click="table.collapsed = !table.collapsed">
<i class="fa fa-table"></i> <strong><span title="{{table.name}}">{{table.name}}</span></strong>
</div>
<div collapse="table.collapsed">
<div ng-repeat="column in table.columns | filter:schemaFilter" style="padding-left:16px;">{{column}}</div>
<div collapse="table.collapsed && !schemaFilter">
<div ng-repeat="column in table.columns" style="padding-left:16px;">{{column}}</div>
</div>
</div>
</div>
Expand Down

0 comments on commit b17080a

Please sign in to comment.