Skip to content

Commit

Permalink
Fix error 500 in item view (#132)
Browse files Browse the repository at this point in the history
* Fix error 500 in item view

* Remove comments
  • Loading branch information
phuonghuynh authored Sep 8, 2020
1 parent 6905b48 commit 490f413
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ <h3 class="panel-title">
<th th:text="#{changedValue}"></th>
</thead>
<tbody>
<tr th:each="change : ${pmi.fromJson('__*{proposedChange}__')}">
<tr th:each="change : ${pmi.fromProposedChangeJson()}">
<td th:text="#{${change.key}}"></td>
<td th:text="${change.value}"></td>
</tr>
Expand Down

0 comments on commit 490f413

Please sign in to comment.