Skip to content

Commit

Permalink
minor changes & bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
MarvinDo committed Oct 6, 2023
1 parent 0947fa7 commit 775621a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ function update_erroneous_variants(variants) {

for (var i = 0; i < variants.length; i++) {
var current_variant = variants[i];
if (current_variant['status'] !== "pending" && current_variant['status'] !== "processing") {
if (current_variant['status'] !== "pending" && current_variant['status'] !== "processing" && current_variant['status'] !== 'success') {
var new_trow = create_erroneous_variant_row(current_variant);
table.row.add(new_trow).draw(false)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,4 @@ <h1 class="bst"> {% block title %} Variant import history {% endblock %} </h1>
{% endblock %}

{% block special_scripts %}
<script src="../static/js/admin_dashboard.js"></script>
{% endblock %}

0 comments on commit 775621a

Please sign in to comment.