Skip to content

Commit

Permalink
Merge pull request #215 from bazilval/issue-176-fix
Browse files Browse the repository at this point in the history
[#176] Fix statuses dropdown
  • Loading branch information
Malcom1986 authored Oct 6, 2023
2 parents 99c766a + 1f63a8c commit 1d49787
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/resources/templates/workspace/wks-typos.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
</li>
<li th:each="status : ${availableStatuses}">
<a class="dropdown-item"
th:classappend="(${typoStatus} == ${#strings.replace(status, '_', ' ')} ? 'disabled' : '')"
th:classappend="(${typoStatus} == ${#strings.replace(status, ' ', '_')} ? 'disabled' : '')"
th:href="@{'/workspace/' + ${wksName} + '/typos'(page=0,size=${typoPage.size},sort=|${sortProp},${sortDir}|, typoStatus=${#strings.replace(status, ' ', '_')})}"
th:text="#{${status}}">
</a>
Expand Down

0 comments on commit 1d49787

Please sign in to comment.