diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-06-25 10:49:58 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-06-25 10:49:58 +0900 |
| commit | 32d4c312ef14844952ba3fa5a93d67f1de9e9827 (patch) | |
| tree | a91e94095f23f20849f7a29b40b3ae2d5e0ccb98 /packages/frontend/src/components/MkFileCaptionEditWindow.vue | |
| parent | enhance(frontend): improve theme settings (diff) | |
| download | misskey-32d4c312ef14844952ba3fa5a93d67f1de9e9827.tar.gz misskey-32d4c312ef14844952ba3fa5a93d67f1de9e9827.tar.bz2 misskey-32d4c312ef14844952ba3fa5a93d67f1de9e9827.zip | |
enhance(frontend): ファイルアップロード前にキャプション設定を行えるように
Resolve #16210
Diffstat (limited to 'packages/frontend/src/components/MkFileCaptionEditWindow.vue')
| -rw-r--r-- | packages/frontend/src/components/MkFileCaptionEditWindow.vue | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/frontend/src/components/MkFileCaptionEditWindow.vue b/packages/frontend/src/components/MkFileCaptionEditWindow.vue index c9b08b616c..e1cd694079 100644 --- a/packages/frontend/src/components/MkFileCaptionEditWindow.vue +++ b/packages/frontend/src/components/MkFileCaptionEditWindow.vue @@ -16,7 +16,7 @@ SPDX-License-Identifier: AGPL-3.0-only > <template #header>{{ i18n.ts.describeFile }}</template> <div class="_spacer" style="--MI_SPACER-min: 20px; --MI_SPACER-max: 28px;"> - <MkDriveFileThumbnail :file="file" fit="contain" style="height: 100px; margin-bottom: 16px;"/> + <MkDriveFileThumbnail v-if="file" :file="file" fit="contain" style="height: 100px; margin-bottom: 16px;"/> <MkTextarea v-model="caption" autofocus :placeholder="i18n.ts.inputNewDescription"> <template #label>{{ i18n.ts.caption }}</template> </MkTextarea> @@ -33,8 +33,8 @@ import MkDriveFileThumbnail from '@/components/MkDriveFileThumbnail.vue'; import { i18n } from '@/i18n.js'; const props = defineProps<{ - file: Misskey.entities.DriveFile; - default: string; + file?: Misskey.entities.DriveFile | null; + default?: string | null; }>(); const emit = defineEmits<{ @@ -44,7 +44,7 @@ const emit = defineEmits<{ const dialog = useTemplateRef('dialog'); -const caption = ref(props.default); +const caption = ref(props.default ?? ''); async function ok() { emit('done', caption.value); |