Skip to content

Commit

Permalink
Fixed rendering of none default value on table structure
Browse files Browse the repository at this point in the history
Fixes #13729

Signed-off-by: Michal Čihař <michal@cihar.com>
  • Loading branch information
nijel committed Oct 16, 2017
1 parent d13c7bf commit 35e15e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/table/structure/table_structure_row.twig
Expand Up @@ -24,7 +24,7 @@
<td class="column_attribute nowrap">{{ attribute }}</td>
<td>{{ row['Null'] == 'YES' ? 'Yes'|trans : 'No'|trans }}</td>
<td class="nowrap">
{% if row['Default'] is defined %}
{% if row['Default'] is not null %}
{% if extracted_columnspec['type'] == 'bit' %}
{{ Util_convertBitDefaultValue(row['Default']) }}
{% else %}
Expand Down

0 comments on commit 35e15e9

Please sign in to comment.