Skip to content

Commit

Permalink
Fixed the disappearance of the error table header (fitbenchmarking#1385)
Browse files Browse the repository at this point in the history
  • Loading branch information
RabiyaF authored Nov 20, 2024
1 parent 162d614 commit df39560
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fitbenchmarking/templates/js/table.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ function toggle_prob_size_header() {

// If the checkbox is checked, display the problem size header column, otherwise hide it.
if (checkBox.checked == true) {
$('th:nth-child(2)').show();
$('#T_table th:nth-child(2)').show();
} else {
$('th:nth-child(2)').hide();
$('#T_table th:nth-child(2)').hide();
}
}

Expand Down

0 comments on commit df39560

Please sign in to comment.