未验证 提交 bf84de67 编写于 作者: T Tim Jacomb 提交者: GitHub

Merge pull request #4589 from daniel-beck/list-failed

List failed plugins on Installed tab
......@@ -166,16 +166,22 @@ THE SOFTWARE.
</tr>
</j:forEach>
<!-- failed ones -->
<j:forEach var="p" items="${it.pluginManager.failedPlugins}">
<j:forEach var="p" items="${it.failedPlugins}">
<tr class="hoverback">
<td class="pane" />
<td class="center pane enable">
<input type="checkbox" disabled="disabled"/>
</td>
<td class="pane">
<h4 class="error">Failed : ${p.name}</h4>
<div style="padding-left: 1em">
<pre>${p.exceptionString}</pre>
<div>
${p.name}
</div>
<div class="alert alert-danger">
<pre>${p.cause.message}</pre>
</div>
</td>
<td class="pane" />
<td class="pane" />
<td class="pane" />
</tr>
</j:forEach>
</j:otherwise>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册