Skip to content

Commit

Permalink
Refs #81 - changed link on notice index view for name to use id.
Browse files Browse the repository at this point in the history
  • Loading branch information
cbmarcum committed Jan 28, 2020
1 parent a9e7e4d commit 67bafa8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions grails-app/views/notice/index.gsp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<tbody>
<g:each in="${noticeList}" status="i" var="item">
<tr>
<td><g:link action="show" id="${item.name}">${item.name}</g:link></td>
<td><g:link action="show" id="${item.id}">${item.name}</g:link></td>
<td>${item.page}</td>
<td><g:formatDate format="yyyy-MMM-dd" date="${item.fromDate}"/></td>
<td><g:formatDate format="yyyy-MMM-dd" date="${item.thruDate}"/></td>
Expand All @@ -59,4 +59,4 @@

</div>
</body>
</html>
</html>

0 comments on commit 67bafa8

Please sign in to comment.