Skip to content
This repository has been archived by the owner on Nov 28, 2022. It is now read-only.

Commit

Permalink
Fix empty subscribers import modal
Browse files Browse the repository at this point in the history
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
  • Loading branch information
kevinansfield committed Nov 3, 2016
1 parent c8643be commit ba84940
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/templates/components/modals/import-subscribers.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<a class="close icon-x" href="" title="Close" {{action "closeModal"}}><span class="hidden">Close</span></a>

<div class="modal-body">
{{#liquid-if response class="fade-transition"}}
{{#if response}}
<table class="subscribers-import-results">
<tr>
<td>Imported:</td>
Expand All @@ -37,7 +37,7 @@
uploadStarted=(action "uploadStarted")
uploadFinished=(action "uploadFinished")
uploadSuccess=(action "uploadSuccess")}}
{{/liquid-if}}
{{/if}}
</div>

<div class="modal-footer">
Expand Down

0 comments on commit ba84940

Please sign in to comment.