Skip to content

Commit

Permalink
minor commit, remove console log statement
Browse files Browse the repository at this point in the history
also correct unclosed figure tag in HTML
  • Loading branch information
extua committed Aug 9, 2024
1 parent ac7ea6a commit 4372ea5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions visualisations/graphs/graph2.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ async function createGraph2(gql_query) {

let gql_response_data = await getRemoteData(gql_query);

console.log(gql_response_data);

// Declare the chart dimensions and margins.
const width = 640;
const height = 360;
Expand Down
4 changes: 2 additions & 2 deletions visualisations/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ <h1>Graph page</h1>
<h2>Graph 1</h2>
<figure>
<svg id="graph1_container" width="640" height="480"></svg>
<figcaption>Top 10 communities with the most nodes<figcaption>
<figcaption>Top 10 communities with the most nodes</figcaption>
</figure>
<h2>Graph 2</h2>
<figure>
<svg id="graph2_container" width="640" height="480"></svg>
<figcaption>Nodes over time<figcaption>
<figcaption>Nodes over time</figcaption>
</figure>


Expand Down

0 comments on commit 4372ea5

Please sign in to comment.