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:
Kevin Ansfield 2016-11-03 13:07:25 +00:00
parent 1111b9401e
commit 6e9c70d262

View File

@ -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">