Skip to content
Snippets Groups Projects

hide CW-ed featured notes on welcome page - fixes #458

Merged dakkar requested to merge feature/458-hide-cw-featured-notes-in-welcome-page into develop
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -40,7 +40,7 @@ const isScrolling = ref(false);
const scrollEl = shallowRef<HTMLElement>();
misskeyApiGet('notes/featured').then(_notes => {
notes.value = _notes;
notes.value = _notes.filter(n => n.cw == null);
});
onUpdated(() => {
Loading