Skip to content

Commit

Permalink
Switch cols vocab and type #95
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdesmet committed Aug 1, 2022
1 parent 28cb341 commit ffa4422
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _layouts/tables.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ <h2 id="{{ table_schema.title | downcase | url_encode }}">{{ table_schema.title
<tr>
<th>Name</th>
<th>Description</th>
<th>Type</th>
<th>Vocabulary</th>
<th>Type</th>
</tr>
</thead>
<tbody>
Expand All @@ -47,12 +47,12 @@ <h2 id="{{ table_schema.title | downcase | url_encode }}">{{ table_schema.title
</ul>
{% endif %}
</td>
<td>{{ field.type }}</td>
<td>
{% if field.vocabulary %}
<a href="{{ field.vocabulary.href }}">{{ field.vocabulary.text }}</a>
{% endif %}
</td>
<td>{{ field.type }}</td>
</tr>
{% endfor %}
</tbody>
Expand Down

0 comments on commit ffa4422

Please sign in to comment.