Skip to content

Commit

Permalink
Merge e1d05a3 into 614339f
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe committed Mar 28, 2022
2 parents 614339f + e1d05a3 commit 6b7bb36
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 5 deletions.
18 changes: 15 additions & 3 deletions HISTORY.rst
Expand Up @@ -2,9 +2,21 @@
History / Changelog
===================

-------
v01.1.1
-------
-----------------
HEAD (unreleased)
-----------------

Full Change List
================

- Fixing issue with ``fa-solid:refresh`` icon (#409)

End-User Summary
================

------
v1.1.1
------

This is the first release candidate of the VarFish "Athenea" release (v1).
Importantly, the first stable release for v1 will be v1.2.0 (see `Release Cycle Documentation <https://varfish-server.readthedocs.io/en/latest/release_cycle.html>`__ for a full explanation of version semantics).
Expand Down
4 changes: 2 additions & 2 deletions variants/templates/variants/_case_detail_buttons.html
Expand Up @@ -88,7 +88,7 @@ <h5 class="modal-title">Confirm Deletion of Small Variants</h5>
<p>Deleting the small variants is irreversible. Please confirm if you want to proceed.</p>
</div>
<div class="modal-footer">
<a href="{% url "variants:smallvariants-delete" project=project.sodar_uuid case=object.sodar_uuid %}" class="btn btn-danger" type="submit" onclick="$(this).addClass('disabled'); $('#deleteSmallVariantsIcon').attr('data-icon', 'fa-solid:refresh'); $('#deleteSmallVariantsIcon').addClass('spin');">
<a href="{% url "variants:smallvariants-delete" project=project.sodar_uuid case=object.sodar_uuid %}" class="btn btn-danger" type="submit" onclick="$(this).addClass('disabled'); $('#deleteSmallVariantsIcon').attr('data-icon', 'mdi:refresh'); $('#deleteSmallVariantsIcon').addClass('spin');">
<i id="deleteSmallVariantsIcon" class="iconify" data-icon="fa-solid:trash-alt"></i>
Delete Small Variants
</a>
Expand All @@ -113,7 +113,7 @@ <h5 class="modal-title">Confirm Deletion of Structural Variants</h5>
<p>Deleting the structural variants is irreversible. Please confirm if you want to proceed.</p>
</div>
<div class="modal-footer">
<a href="{% url "variants:structuralvariants-delete" project=project.sodar_uuid case=object.sodar_uuid %}" class="btn btn-danger" type="submit" onclick="$(this).addClass('disabled'); $('#deleteStructuralVariantsIcon').attr('data-icon', 'fa-solid:refresh'); $('#deleteStructuralVariantsIcon').addClass('spin');">
<a href="{% url "variants:structuralvariants-delete" project=project.sodar_uuid case=object.sodar_uuid %}" class="btn btn-danger" type="submit" onclick="$(this).addClass('disabled'); $('#deleteStructuralVariantsIcon').attr('data-icon', 'mdi:refresh'); $('#deleteStructuralVariantsIcon').addClass('spin');">
<i id="deleteStructuralVariantsIcon" class="iconify" data-icon="fa-solid:trash-alt"></i>
Delete Structural Variants
</a>
Expand Down

0 comments on commit 6b7bb36

Please sign in to comment.