Skip to content

Commit

Permalink
Fixed: template uses nonexisting app.name expression
Browse files Browse the repository at this point in the history
  • Loading branch information
fmichielssen committed Nov 9, 2018
1 parent 4a52d35 commit 2cf408e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/resources/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<img th:if="${appLogos.get(app) != null}" th:src="${appLogos.get(app)}"></img>
</div>
<div class="media-body">
<a th:href="@{/app/}+${app.name}" th:text="${app.displayName == null} ? ${app.name} : ${app.displayName}"></a>
<a th:href="@{/app/}+${app.id}" th:text="${app.displayName == null} ? ${app.id} : ${app.displayName}"></a>
<br th:if="${app.description != null}" />
<span th:if="${app.description != null}" th:utext="${app.description}"></span>
</div>
Expand Down

0 comments on commit 2cf408e

Please sign in to comment.