Skip to content

Commit

Permalink
correct sample graph name
Browse files Browse the repository at this point in the history
  • Loading branch information
hamzaislam101 committed Feb 20, 2024
1 parent 9d2fd70 commit 296c701
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demo/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ async function runLayout() {
var select = document.getElementById("experimentGraphs");
var selectedGraph = select.options[select.selectedIndex].value;

if(selectedGraph.startsWith("Sample")){
if(selectedGraph.startsWith("sample")){
var resp = await fetch('./samples/'+selectedGraph+'.graphml');
resp = await resp.text();
loadGraphMLFromStr(resp);
Expand Down

0 comments on commit 296c701

Please sign in to comment.