fix: return of the shuffled clone(s)
This commit is contained in:
parent
9ca85e7351
commit
057d5f852e
3 changed files with 7 additions and 4 deletions
|
@ -32,7 +32,10 @@ export default {
|
||||||
},
|
},
|
||||||
|
|
||||||
// watching
|
// watching
|
||||||
featuredWatching: (watching, count) => shuffleArray(watching).slice(0, count),
|
featuredWatching: (watching, count) => {
|
||||||
|
const data = [...watching]
|
||||||
|
return shuffleArray(data).slice(0, count)
|
||||||
|
},
|
||||||
|
|
||||||
// dates
|
// dates
|
||||||
isoDateOnly: (date, separator) => {
|
isoDateOnly: (date, separator) => {
|
||||||
|
|
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "19.5.16",
|
"version": "19.5.17",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "19.5.16",
|
"version": "19.5.17",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@cdransf/api-text": "^1.4.0",
|
"@cdransf/api-text": "^1.4.0",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "19.5.16",
|
"version": "19.5.17",
|
||||||
"description": "The source for my personal site. Built using 11ty.",
|
"description": "The source for my personal site. Built using 11ty.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
Reference in a new issue