Skip to content

Commit

Permalink
Merge pull request #4320 from alphagov/fix-chart
Browse files Browse the repository at this point in the history
Fix missing trailing quotes in chart component markup
  • Loading branch information
andysellick authored Oct 21, 2024
2 parents a4d6d40 + 6b858f4 commit 84a278b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
<tr class="govuk-table__row">
<td class="govuk-table__cell"></td>
<% keys.each do |key| %>
<th class="govuk-table__header scope="col">
<th class="govuk-table__header" scope="col">
<%= key %>
</th>
<% end %>
Expand Down Expand Up @@ -125,7 +125,7 @@
<tbody class="govuk-table__body">
<% keys.each_with_index do |key, index| %>
<tr>
<th class="govuk-table__header scope="row">
<th class="govuk-table__header" scope="row">
<%= key %>
</th>
<% rows.each do |row| %>
Expand Down

0 comments on commit 84a278b

Please sign in to comment.