Skip to content

Commit

Permalink
Removed w-100 class from tables in display_table_stats
Browse files Browse the repository at this point in the history
Signed-off-by: Shailesh Jain <jainshailesh91@gmail.com>
  • Loading branch information
ShailuJain authored and williamdes committed Jan 10, 2020
1 parent 6e6c3e0 commit d50da1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/table/structure/display_table_stats.twig
Expand Up @@ -10,7 +10,7 @@
<a id="showusage"></a>

{% if not tbl_is_view and not db_is_system_schema %}
<table id="tablespaceusage" class="w-100 data">
<table id="tablespaceusage" class="data">
<caption class="tblHeaders">{% trans 'Space usage' %}</caption>
<tbody>
<tr>
Expand Down Expand Up @@ -70,7 +70,7 @@

{% set avg_size = avg_size is defined ? avg_size : null %}
{% set avg_unit = avg_unit is defined ? avg_unit : null %}
<table id="tablerowstats" class="w-100 data">
<table id="tablerowstats" class="data">
<caption class="tblHeaders">{% trans 'Row statistics' %}</caption>
<tbody>
{% if showtable['Row_format'] is defined %}
Expand Down

0 comments on commit d50da1d

Please sign in to comment.