Merge pull request #3018 from alphagov/fixes-for-check-spreadsheet-page

Fixes for check spreadsheet page
This commit is contained in:
Chris Hill-Scott
2019-06-19 13:32:28 +01:00
committed by GitHub
2 changed files with 10 additions and 2 deletions

View File

@@ -45,7 +45,7 @@
{%- endmacro %}
{% macro row(id=None) -%}
<tr class="table-row" {% if id %}id="{{id}}"{% endif %}>
<tr class="table-row" {% if id and id is string %}id="{{id}}"{% endif %}>
{{ caller() }}
</tr>
{%- endmacro %}