mirror of
https://github.com/driftywinds/driftywinds.github.io.git
synced 2025-12-19 19:13:33 +00:00
Increase default featured apps limit (3 -> 5)
This commit is contained in:
@@ -30,8 +30,8 @@ function main(json) {
|
|||||||
// Featured apps
|
// Featured apps
|
||||||
let count = 1;
|
let count = 1;
|
||||||
json.apps.forEach(app => {
|
json.apps.forEach(app => {
|
||||||
// Max: 3 featured apps if not specified
|
// Max: 5 featured apps if not specified
|
||||||
if (count > 3) return;
|
if (count > 5) return;
|
||||||
|
|
||||||
// Ignore beta apps
|
// Ignore beta apps
|
||||||
if (app.beta) return;
|
if (app.beta) return;
|
||||||
|
|||||||
Reference in New Issue
Block a user