Skip to content

Commit

Permalink
Switch logic for highlighting differencies in IPT compare page
Browse files Browse the repository at this point in the history
  • Loading branch information
matsbov committed Oct 3, 2024
1 parent 62b2e06 commit 7635b74
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions grails-app/views/ipt/syncView.gsp
Original file line number Diff line number Diff line change
Expand Up @@ -48,16 +48,16 @@
<td>
${item.type}
</td>
<td>
<td <g:if test="${item.iptPublished != item.atlasPublished}">style="color: red"</g:if>>
${item.iptPublished}
</td>
<td <g:if test="${item.iptPublished != item.atlasPublished}">style="color: red"</g:if>>
<td>
${item.atlasPublished}
</td>
<td style="text-align: right;">
<td style="text-align: right; <g:if test="${item.iptCount != item.atlasCount}">color: red</g:if>">
<g:formatNumber number="${item.iptCount}" format="###,###,##0" />
</td>
<td style="text-align: right; <g:if test="${item.iptCount != item.atlasCount}">color: red</g:if>">
<td style="text-align: right;">
<g:formatNumber number="${item.atlasCount}" format="###,###,##0" />
</td>
<td style="text-align: right; color: red">
Expand All @@ -77,10 +77,10 @@
<td></td>
<td></td>
<td></td>
<td style="text-align: right">
<td style="text-align: right; <g:if test="${iptTotalCount != atlasTotalCount}">color: red</g:if>">
<em><g:formatNumber number="${iptTotalCount}" format="###,###,##0" /></em>
</td>
<td style="text-align: right; <g:if test="${iptTotalCount != atlasTotalCount}">color: red</g:if>">
<td style="text-align: right;">
<em><g:formatNumber number="${atlasTotalCount}" format="###,###,##0" /></em>
</td>
<td style="text-align: right; color: red">
Expand Down

0 comments on commit 7635b74

Please sign in to comment.