Skip to content

Commit 7926627

Browse files
authored
Merge pull request #218 from nexB/211-similar-path-name
Add forward slash for directory search #211
2 parents 0e16dbe + cfdcaea commit 7926627

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

assets/app/js/renderer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ $(document).ready(function () {
7777
.on("node-selected", node => {
7878
// Set the search value for the first column (path) equal to the
7979
// Selected jstree path and redraw the table
80-
cluesTable.columns(0).search(node.id).draw();
80+
cluesTable.columns(0).search(node.id + "/").draw();
8181
nodeView.setRoot(node.id);
8282
barChart.draw();
8383
});

0 commit comments

Comments
 (0)