Skip to content

Commit be436ef

Browse files
committed
#39: Removed clue count in node view
* Removed broken clue count from the node view directories * This feature can be added back later. We probably need to think about the best way to display it, which may not be the same as how we were previously displaying it. Signed-off-by: Jillian Daguil <[email protected]>
1 parent a47e5a8 commit be436ef

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

assets/js/aboutCodeNodeView.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,8 @@ class AboutCodeNodeView extends NodeView {
8484
.attr("alignment-baseline", "central")
8585
.text(function (d) {
8686
// TODO: Calculate clue count from DB when loading node data.
87-
return `${d.name} (${d.files_count}, ${d.clues_count})`;
87+
// return `${d.name} (${d.files_count}, ${d.clues_count})`;
88+
return `${d.name} (${d.files_count})`;
8889
})
8990
.on("click", this.onNodeClicked);
9091

0 commit comments

Comments
 (0)