Skip to content

Commit d93d35f

Browse files
committed
Fixed resource table colspans
1 parent fb10518 commit d93d35f

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

includes/fragment-resourceTable.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
{% endcapture %}
4040
{% assign trimmedJurisdictions = newJurisdictions | strip %}
4141

42-
{% assign colspan = 1 %}
42+
{% assign colspan = 2 %}
4343
{% if site.data.resources[resource_].status.fmm == nil %}
4444
{% assign colspan = colspan | plus: 1 %}
4545
{% endif %}
@@ -100,28 +100,28 @@
100100
</tr>
101101
{% if site.data.resources[resource_].identifiers %}
102102
<tr>
103-
<td colspan="5">
103+
<td colspan="6">
104104
<i>{{site.data.stringsBase[include.lang]['OtherIdentifiers']}}:</i> {{site.data.resources[resource_].identifiers}}
105105
</td>
106106
</tr>
107107
{% endif %}
108108
{% if site.data.resources[resource_].keywords %}
109109
<tr>
110-
<td colspan="5">
110+
<td colspan="6">
111111
<i>{{site.data.stringsBase[include.lang]['Keywords']}}:</i> {{site.data.resources[resource_].keywords}}
112112
</td>
113113
</tr>
114114
{% endif %}
115115
{% if site.data.resources[resource_].contexts %}
116116
<tr>
117117
{% assign usageLabel = "*" | append: site.data.stringsBase[include.lang]['Usage'] | append: "*: " %}
118-
<td colspan="5">{{site.data.resources[resource_].contexts | prepend: usageLabel | markdownify}}</td>
118+
<td colspan="6">{{site.data.resources[resource_].contexts | prepend: usageLabel | markdownify}}</td>
119119
</tr>
120120
{% endif %}
121121
{%if site.data.resources[resource_].copyright %}
122122
{% assign copyrightLabel = "*" | append: site.data.stringsBase[include.lang]['CopyrightLegal'] | append: "*: " %}
123123
<tr>
124-
<td colspan="5">{{site.data.resources[resource_].copyrightlang[include.lang] | prepend: copyrightLabel | markdownify}}</td>
124+
<td colspan="6">{{site.data.resources[resource_].copyrightlang[include.lang] | prepend: copyrightLabel | markdownify}}</td>
125125
</tr>
126126
{% endif %}
127127
</table>

0 commit comments

Comments
 (0)