1
0
Fork 0
mirror of https://github.com/TryGhost/Ghost-Admin.git synced 2023-12-14 02:33:04 +01:00
Ghost-Admin/app/templates/components/gh-theme-error-li.hbs
2018-03-19 09:57:31 +00:00

29 lines
846 B
Handlebars

<a href="" class="theme-validation-toggle-details" {{action "toggleDetails"}} data-test-toggle-details>
<h4 class="theme-validation-rule-text">
{{{error.rule}}}
</h4>
<div class="theme-validation-rule-icon">
{{#if showDetails}}
{{svg-jar "arrow-down"}}
{{else}}
{{svg-jar "arrow-right"}}
{{/if}}
</div>
</a>
{{#if showDetails}}
<p class="theme-validation-details">
{{{error.details}}}
</p>
{{#if error.failures}}
<div class="theme-validation-list">
<h6>Affected files:</h6>
<ul>
{{#each error.failures as |failure|}}
<li><code>{{failure.ref}}</code>{{#if failure.message}}: {{failure.message}}{{/if}}</li>
{{/each}}
</ul>
</div>
{{/if}}
{{/if}}