1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-04 13:05:57 +02:00

deps(frontend): update vue-tsc to v3.2.1 (#17091)

This commit is contained in:
かっこかり
2026-01-11 15:00:00 +09:00
committed by GitHub
parent faf2399e31
commit 4bc0026900
4 changed files with 224 additions and 583 deletions

View File

@@ -111,7 +111,7 @@ SPDX-License-Identifier: AGPL-3.0-only
</div>
</div>
<div v-if="appearNote.files && appearNote.files.length > 0">
<MkMediaList :mediaList="appearNote.files"/>
<MkMediaList ref="galleryEl" :mediaList="appearNote.files"/>
</div>
<MkPoll
v-if="appearNote.poll"
@@ -323,6 +323,7 @@ const renoteButton = useTemplateRef('renoteButton');
const renoteTime = useTemplateRef('renoteTime');
const reactButton = useTemplateRef('reactButton');
const clipButton = useTemplateRef('clipButton');
const galleryEl = useTemplateRef('galleryEl');
const isMyRenote = $i && ($i.id === note.userId);
const showContent = ref(false);
const isDeleted = ref(false);
@@ -356,7 +357,9 @@ const keymap = {
if (!prefer.s.showClipButtonInNoteFooter) return;
clip();
},
//'o': () => galleryEl.value?.openGallery(),
'o': () => {
galleryEl.value?.openGallery();
},
'v|enter': () => {
if (appearNote.cw != null) {
showContent.value = !showContent.value;