Skip to content

Commit

Permalink
refs #57 make sure all column in overview widget have same width
Browse files Browse the repository at this point in the history
  • Loading branch information
tsteur committed Mar 10, 2014
1 parent e96399a commit 2e1cb7b
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions plugins/Insights/templates/overviewWidget.twig
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@
data-table-onlyinsightsinit="1">
{% if reports.getColumns|length > 0 %}

{% for dataTable in reports.getDataTables() if dataTable.getRowsCount > 0 %}
{% set metadata = dataTable.getAllTableMetadata %}
<table class="dataTable"
title="{{ consideredGrowth|e('html_attr') }} {{ consideredChanges|e('html_attr') }}">
{% for dataTable in reports.getDataTables() if dataTable.getRowsCount > 0 %}
{% set metadata = dataTable.getAllTableMetadata %}

<table class="dataTable"
title="{{ consideredGrowth|e('html_attr') }} {{ consideredChanges|e('html_attr') }}">

<thead >
<thead>
{% include "@Insights/table_header.twig" %}
</thead>

Expand All @@ -19,8 +18,8 @@
{% endfor %}
</tbody>

</table>
{% endfor %}
{% endfor %}
</table>

<script type="text/javascript" defer="defer">
$(document).ready(function () {
Expand Down

0 comments on commit 2e1cb7b

Please sign in to comment.