Skip to content

Commit

Permalink
Fix style value
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-o committed Jun 4, 2023
1 parent 18aedbb commit abd0e76
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/it/MPIR-431/verify.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def summaryLine = '''\
<td align="right">compile: 47</td>
<td align="right">compile: 36</td>
<td align="right">compile: 4</td>
<td rowspan="3" style="vertical-align: middle" align="center">1.3</td>
<td rowspan="3" style="vertical-align: middle;" align="center">1.3</td>
<td align="right">compile: 1</td></tr>
<tr class="a">
<td align="right">runtime: 1</td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@ private void tableRowWithRowspan(
if (!alreadyInserted) {
SinkEventAttributes att = new SinkEventAttributeSet();
att.addAttribute(Attribute.ROWSPAN, rowspan);
att.addAttribute(Attribute.STYLE, "vertical-align: middle");
att.addAttribute(Attribute.STYLE, "vertical-align: middle;");
sink.tableCell(att);
text(content[i]);
sink.tableCell_();
Expand Down

0 comments on commit abd0e76

Please sign in to comment.