Skip to content

Commit bb49db6

Browse files
committed
bug fix
1 parent 96b133c commit bb49db6

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

  • pegr/grails-app/views/cellSource

pegr/grails-app/views/cellSource/list.gsp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
<table class="table table-bordered">
3232
<thead>
3333
<tr>
34+
<th>ID</th>
3435
<th>Species</th>
3536
<th>Parent</th>
3637
<th>Strain</th>
@@ -45,10 +46,11 @@
4546
<tbody>
4647
<g:each in="${cellSources}" var="cellSource">
4748
<tr>
49+
<td><g:link controller="cellSource" action="show" params="[id:cellSource.id]">${cellSource.id}</g:link></td>
4850
<input type="hidden" name="cellSourceId" value="${cellSource.id}" class="cellSourceId">
4951
<td>${cellSource.strain?.species}</td>
5052
<td>${cellSource.strain?.parent}</td>
51-
<td><g:link controller="cellSource" action="show" params="[id:cellSource.id]">${cellSource.strain}</g:link></td>
53+
<td>${cellSource.strain}</td>
5254
<td>${cellSource.strain?.geneticModification}</td>
5355
<td>${cellSource.biologicalSourceId}</td>
5456
<td class="barcode item"><span class="value">${cellSource.item?.barcode}</span></td>

0 commit comments

Comments
 (0)