[1448] Fix admin monitor UI (#1493)

This commit is contained in:
Antonio Muniz 2020-10-16 21:02:21 +02:00 committed by GitHub
parent 249e9a2446
commit d9ea28f572
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 4 deletions

View File

@ -1,14 +1,11 @@
<?jelly escape-by-default='true'?> <?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core"> <j:jelly xmlns:j="jelly:core">
<div class="${it.css}"> <div class="${it.css}">
<form method="post" >
${%Configuration as Code obsolete file format}: ${%Configuration as Code obsolete file format}:
<ul> <ul>
<j:forEach items="${it.errors}" var="error"> <j:forEach items="${it.errors}" var="error">
<li>${error.source.file} (line ${error.source.line}): ${error.message}</li> <li>${error.message}</li>
</j:forEach> </j:forEach>
</ul> </ul>
</form>
</div> </div>
</j:jelly> </j:jelly>