Skip to content
Snippets Groups Projects
Commit b588e8b6 authored by syuilo's avatar syuilo
Browse files

Merge branch 'develop' of https://github.com/misskey-dev/misskey into develop

parents 06f55ffb 02df6a28
No related branches found
No related tags found
No related merge requests found
...@@ -108,10 +108,7 @@ const tick = () => { ...@@ -108,10 +108,7 @@ const tick = () => {
window.fetch(fetchEndpoint.value, {}) window.fetch(fetchEndpoint.value, {})
.then(res => res.json()) .then(res => res.json())
.then(feed => { .then(feed => {
if (widgetProps.shuffle) { rawItems.value = feed.items ?? [];
shuffle(feed.items);
}
rawItems.value = feed.items;
fetching.value = false; fetching.value = false;
key++; key++;
}); });
......
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