mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
c5535e0a1b
No issue - fixed "{{#each}}" helper in templates to use block syntax - fixed deprecated ember.controller getter/setter function to use new syntax - removed unnecessary pass-protect route view
8 lines
144 B
Handlebars
8 lines
144 B
Handlebars
{{#if importErrors}}
|
|
<table class="table">
|
|
{{#each importErrors as |error|}}
|
|
<tr><td>{{error.message}}</td></tr>
|
|
{{/each}}
|
|
</table>
|
|
{{/if}}
|