Skip to content

Commit 77982b1

Browse files
authored
Merge pull request #1 from roba91/master
Fixed off-by-one bug in graph pattern search.
2 parents c02d892 + 77013dc commit 77982b1

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

visualise/static/js/visualise/sidebar.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,11 +217,9 @@ Sidebar.showHideRadios = function(visible_idxs) {
217217
if (visible_idxs.indexOf(idx) >= 0) {
218218
$(this).show();
219219
$(this).children().first().attr('disabled', false);
220-
$(this).prev().show(); // also show fingerprint
221220
} else {
222221
$(this).hide();
223222
$(this).children().first().attr('disabled', true);
224-
$(this).prev().hide(); // hide fingerprint
225223
}
226224
})
227225
};

0 commit comments

Comments
 (0)