discourse/app/assets/javascripts/admin/templates/components/admin-backups-logs.hbs
Blake Erickson f5cca4930d DEV: Remove buffered rendering from admin backup logs
This is another refactoring in the multi-step process to remove all uses
of our custom Render Buffer.

Previous commit: da66950cf5 in this
series.

This commit affects the display of the backup logs. It is just a
refactor and does not change any functionality.
2019-12-09 14:45:36 -07:00

9 lines
171 B
Handlebars

{{#if hasFormattedLogs}}
<pre>{{formattedLogs}}</pre>
{{else}}
<p>{{noLogsMessage}}</p>
{{/if}}
{{#if showLoadingSpinner}}
<div class="spinner small"></div>
{{/if}}