Skip to content

Commit

Permalink
deselect row when tab is no longer active
Browse files Browse the repository at this point in the history
  • Loading branch information
tconfrey committed Oct 21, 2024
1 parent f1bf19b commit 2bc732d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions versions/1.0.3/app/bt.js
Original file line number Diff line number Diff line change
Expand Up @@ -1233,6 +1233,7 @@ function clearSelected() {
// utility - unselect tt node if any
const currentSelection = $("tr.selected")[0];
if (currentSelection) {
$("tr.selected").removeClass('selected');
const node = $(currentSelection).attr("data-tt-id");
AllNodes[node]?.unshowForSearch();
}
Expand Down

0 comments on commit 2bc732d

Please sign in to comment.