Skip to content

Commit

Permalink
Fix delete all in manual mode
Browse files Browse the repository at this point in the history
  • Loading branch information
metehaansever committed Sep 9, 2024
1 parent f952892 commit a1f438e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion anvio/data/interactive/js/bin.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Bins.prototype.NewBin = function(id, binState) {
`}
<td><center><span class="default-bin-icon bi bi-trash-fill fa-lg" aria-hidden="true" alt="Delete this bin" title="Delete this bin" onClick="bins.DeleteBin(${id});"></span></center></td>
</tr>
${ mode === 'full' || mode === 'refine' ? `<tr style="${ $('#estimate_taxonomy').is(':checked') ? `` : `display: none;`}" data-parent="${id}">
${ mode === 'full' || mode === 'refine' || mode === 'manual' ? `<tr style="${ $('#estimate_taxonomy').is(':checked') ? `` : `display: none;`}" data-parent="${id}">
<td style="border-top: 0px;">&nbsp;</td>
<td style="border-top: 0px;">&nbsp;</td>
<td colspan="6" style="border-top: 0px; padding-top: 0px;">
Expand Down

0 comments on commit a1f438e

Please sign in to comment.