[Tables] Fixed issue with historical tables composed of multiple objects

This commit is contained in:
Henry
2016-03-13 19:12:55 -07:00
parent 5208631528
commit ea0b86fe72
3 changed files with 31 additions and 6 deletions

View File

@@ -6,7 +6,8 @@
<table class="filterable"
ng-style="overrideRowPositioning && {
height: totalHeight + 'px',
'table-layout': overrideRowPositioning ? 'fixed' : 'auto'
'table-layout': overrideRowPositioning ? 'fixed' : 'auto',
'max-width': totalWidth
}">
<thead>
<tr>
@@ -57,7 +58,7 @@
'box-sizing': 'border-box'
}"
class="{{visibleRow.contents[header].cssClass}}">
{{ visibleRow.contents[header].text }}
{{ visibleRow.contents[header].text }}
</td>
</tr>
</tbody>