From 057d5f852ebd8dae03dfbe4c242243341d450ac5 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Thu, 20 Jun 2024 15:38:42 -0700 Subject: [PATCH] fix: return of the shuffled clone(s) --- config/filters/index.js | 5 ++++- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/config/filters/index.js b/config/filters/index.js index 0c423efe..d2317026 100644 --- a/config/filters/index.js +++ b/config/filters/index.js @@ -32,7 +32,10 @@ export default { }, // watching - featuredWatching: (watching, count) => shuffleArray(watching).slice(0, count), + featuredWatching: (watching, count) => { + const data = [...watching] + return shuffleArray(data).slice(0, count) + }, // dates isoDateOnly: (date, separator) => { diff --git a/package-lock.json b/package-lock.json index 8745d500..73ffc0b2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "19.5.16", + "version": "19.5.17", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "19.5.16", + "version": "19.5.17", "license": "MIT", "dependencies": { "@cdransf/api-text": "^1.4.0", diff --git a/package.json b/package.json index 048fad8d..3dea9540 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "19.5.16", + "version": "19.5.17", "description": "The source for my personal site. Built using 11ty.", "type": "module", "scripts": {