Skip to content

Commit

Permalink
#319 Fix for SQL error for family popup link
Browse files Browse the repository at this point in the history
  • Loading branch information
nickdos committed Nov 26, 2024
1 parent 7fffd90 commit 92b2e11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ out
/.slcache
/logs
*.iml
.DS_Store
grails-app/.DS_Store
grails-app/controllers/.DS_Store
grails-app/controllers/au/.DS_Store
Expand Down
2 changes: 1 addition & 1 deletion grails-app/views/speciesListItem/_facet.gsp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
</g:if>
<g:else>
<td><g:link action="list" id="${params.id}"
params="${[fq: sl.buildFqList(fqs: fqs, fq: "${key}:${arr[0]}"), q: params.q, max: params.max]}">${arr[0]}</g:link></td>
params="${[fq: sl.buildFqList(fqs: fqs, fq: "${QueryService.MATCHED_FAMILY.equals(key) ? 'matched family' : key}:${arr[0]}"), q: (params.q) ?: null, max: params.max]}">${arr[0]}</g:link></td>
<td style="text-align: right; border-right-style: none;">${arr[1]}</td>
</g:else>
</tr>
Expand Down

0 comments on commit 92b2e11

Please sign in to comment.