mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
Fix empty subscribers import modal
no issue - recent changes to the way our modals work has resulted in the subscribers import modal appearing blank. The `liquid-if` used for transitioning between upload and result state of the doesn't run properly and the styles end up hiding it's contents - this PR is a quick-fix that removes the animated transition so that imports are still possible
This commit is contained in:
parent
1111b9401e
commit
6e9c70d262
@ -10,7 +10,7 @@
|
|||||||
<a class="close icon-x" href="" title="Close" {{action "closeModal"}}><span class="hidden">Close</span></a>
|
<a class="close icon-x" href="" title="Close" {{action "closeModal"}}><span class="hidden">Close</span></a>
|
||||||
|
|
||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
{{#liquid-if response class="fade-transition"}}
|
{{#if response}}
|
||||||
<table class="subscribers-import-results">
|
<table class="subscribers-import-results">
|
||||||
<tr>
|
<tr>
|
||||||
<td>Imported:</td>
|
<td>Imported:</td>
|
||||||
@ -37,7 +37,7 @@
|
|||||||
uploadStarted=(action "uploadStarted")
|
uploadStarted=(action "uploadStarted")
|
||||||
uploadFinished=(action "uploadFinished")
|
uploadFinished=(action "uploadFinished")
|
||||||
uploadSuccess=(action "uploadSuccess")}}
|
uploadSuccess=(action "uploadSuccess")}}
|
||||||
{{/liquid-if}}
|
{{/if}}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
|
Loading…
Reference in New Issue
Block a user