Merge pull request #1159 from DecibillyJoel/main
GitHub Themes/Plugins list limit 30 -> 100
This commit is contained in:
commit
50b953d0b7
2 changed files with 4 additions and 4 deletions
|
@ -176,7 +176,7 @@
|
||||||
redirect: 'follow'
|
redirect: 'follow'
|
||||||
};
|
};
|
||||||
|
|
||||||
fetch("https://api.github.com/search/repositories?q=topic:cidermusicplugin fork:true", requestOptions)
|
fetch("https://api.github.com/search/repositories?q=topic:cidermusicplugin fork:true&per_page=100", requestOptions)
|
||||||
.then(response => response.text())
|
.then(response => response.text())
|
||||||
.then(result => {
|
.then(result => {
|
||||||
self.repos = JSON.parse(result).items
|
self.repos = JSON.parse(result).items
|
||||||
|
|
|
@ -184,7 +184,7 @@
|
||||||
redirect: 'follow'
|
redirect: 'follow'
|
||||||
};
|
};
|
||||||
|
|
||||||
fetch("https://api.github.com/search/repositories?q=topic:cidermusictheme fork:true", requestOptions)
|
fetch("https://api.github.com/search/repositories?q=topic:cidermusictheme fork:true&per_page=100", requestOptions)
|
||||||
.then(response => response.text())
|
.then(response => response.text())
|
||||||
.then(result => {
|
.then(result => {
|
||||||
let items = JSON.parse(result).items
|
let items = JSON.parse(result).items
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue