Skip to content
Snippets Groups Projects
Commit 45eab01f authored by dakkar's avatar dakkar
Browse files

merge: hide CW-ed featured notes on welcome page - fixes #458 (!467)

View MR for information: !467



Closes #458

Approved-by: default avatarAmelia Yukii <amelia.yukii@shourai.de>
Approved-by: default avatarLeah <kevinlukej@gmail.com>
Approved-by: default avatarMarie <marie@kaifa.ch>
parents 71bcd76c ff189b19
No related branches found
No related tags found
3 merge requests!485release 2024.3.2,!479more merges from misskey,!467hide CW-ed featured notes on welcome page - fixes #458
Pipeline #409 passed with stages
in 16 minutes and 1 second
...@@ -40,7 +40,7 @@ const isScrolling = ref(false); ...@@ -40,7 +40,7 @@ const isScrolling = ref(false);
const scrollEl = shallowRef<HTMLElement>(); const scrollEl = shallowRef<HTMLElement>();
misskeyApiGet('notes/featured').then(_notes => { misskeyApiGet('notes/featured').then(_notes => {
notes.value = _notes; notes.value = _notes.filter(n => n.cw == null);
}); });
onUpdated(() => { onUpdated(() => {
......
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