Skip to content

Commit

Permalink
fix(frontend): 一部のノート表示で設定にかかわらずセンシティブなファイルを含むノートが最小化される問題を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
kakkokari-gtyih authored Oct 30, 2024
1 parent a96f09c commit 7fc8a2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/frontend/src/components/MkNote.vue
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ const emit = defineEmits<{
}>();

const inTimeline = inject<boolean>('inTimeline', false);
const tl_withSensitive = inject<Ref<boolean>>('tl_withSensitive', ref(false));
const tl_withSensitive = inject<Ref<boolean>>('tl_withSensitive', ref(true));
const inChannel = inject('inChannel', null);
const currentClip = inject<Ref<Misskey.entities.Clip> | null>('currentClip', null);

Expand Down

0 comments on commit 7fc8a2a

Please sign in to comment.