Merge pull request #30 from wagesj45/codex/fix-data-loading-bug-on-per-domain-tab
Fix domain chart paths
This commit is contained in:
commit
84e3e0e7de
1 changed files with 1 additions and 1 deletions
|
@ -166,7 +166,7 @@
|
||||||
container.innerHTML = '<p>Select a domain</p>';
|
container.innerHTML = '<p>Select a domain</p>';
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
path = 'domains/' + currentDomain + '/' + currentInterval;
|
path = 'domains/' + encodeURIComponent(currentDomain) + '/' + currentInterval;
|
||||||
}
|
}
|
||||||
|
|
||||||
fetch(path + '/reports.json')
|
fetch(path + '/reports.json')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue