Skip to content

Commit

Permalink
Merge pull request #320 from AtlasOfLivingAustralia/319-species-lists…
Browse files Browse the repository at this point in the history
…-selecting-family-from-popup-filter-returns-error

#319 species lists selecting family from popup filter returns error
  • Loading branch information
nickdos authored Nov 26, 2024
2 parents 65158a4 + 92b2e11 commit 2c8b2e1
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
Binary file removed .DS_Store
Binary file not shown.
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 2c8b2e1

Please sign in to comment.