Skip to content
Snippets Groups Projects
Commit 52c0aa56 authored by Konstantin Baierer's avatar Konstantin Baierer
Browse files

fix repos.json path

parent 95fe5ec2
No related branches found
No related tags found
No related merge requests found
Source diff could not be displayed: it is too large. Options to address this: view the blob.
...@@ -82,7 +82,7 @@ export default { ...@@ -82,7 +82,7 @@ export default {
}, },
methods: { methods: {
fetchRepoData() { fetchRepoData() {
fetch('../repos.json').then(resp => resp.json()).then(repos => { fetch('repos.json').then(resp => resp.json()).then(repos => {
this.repos_raw.splice(0, this.repos_raw.length) this.repos_raw.splice(0, this.repos_raw.length)
this.repos_raw.push(...repos) this.repos_raw.push(...repos)
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment