Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion hashtagsv2/graphs/templates/graphs/graph.html
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,6 @@ <h1>
</div>
</div>
<hr>
<script> var url_param = '{{ query_string }}'; </script>
<script src="{% static 'js/graph.js' %}"></script>
{% endif %}
</div>
Expand Down
1 change: 1 addition & 0 deletions hashtagsv2/hashtags/static/js/graph.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ url_string = window.location.href;
var url = new URL(url_string);
var project = url.searchParams.get("project");
var user = url.searchParams.get("user");
var url_param = url.searchParams.toString();

// Hide top projects section when filtering on it
if (project!=="" && project!==null){
Expand Down