summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorかっこかり <67428053+kakkokari-gtyih@users.noreply.github.com>2024-10-30 09:57:54 +0900
committerGitHub <noreply@github.com>2024-10-30 09:57:54 +0900
commit7fc8a2a7b04d8550abdf55259bde4c857bd462a1 (patch)
tree10d9fc4414800a49df58404859a7ca03f8faffe1
parentBump version to 2024.10.2-alpha.2 (diff)
downloadsharkey-7fc8a2a7b04d8550abdf55259bde4c857bd462a1.tar.gz
sharkey-7fc8a2a7b04d8550abdf55259bde4c857bd462a1.tar.bz2
sharkey-7fc8a2a7b04d8550abdf55259bde4c857bd462a1.zip
fix(frontend): 一部のノート表示で設定にかかわらずセンシティブなファイルを含むノートが最小化される問題を修正
Fix https://github.com/misskey-dev/misskey/pull/14772#discussion_r1821707117
-rw-r--r--packages/frontend/src/components/MkNote.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/components/MkNote.vue b/packages/frontend/src/components/MkNote.vue
index be1339ecc4..3de69d6d09 100644
--- a/packages/frontend/src/components/MkNote.vue
+++ b/packages/frontend/src/components/MkNote.vue
@@ -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);