diff options
| author | かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com> | 2024-10-30 09:57:54 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-30 09:57:54 +0900 |
| commit | 7fc8a2a7b04d8550abdf55259bde4c857bd462a1 (patch) | |
| tree | 10d9fc4414800a49df58404859a7ca03f8faffe1 /packages | |
| parent | Bump version to 2024.10.2-alpha.2 (diff) | |
| download | sharkey-7fc8a2a7b04d8550abdf55259bde4c857bd462a1.tar.gz sharkey-7fc8a2a7b04d8550abdf55259bde4c857bd462a1.tar.bz2 sharkey-7fc8a2a7b04d8550abdf55259bde4c857bd462a1.zip | |
fix(frontend): 一部のノート表示で設定にかかわらずセンシティブなファイルを含むノートが最小化される問題を修正
Fix https://github.com/misskey-dev/misskey/pull/14772#discussion_r1821707117
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/frontend/src/components/MkNote.vue | 2 |
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); |