diff options
| author | zyoshoka <107108195+zyoshoka@users.noreply.github.com> | 2024-07-30 19:48:16 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-30 19:48:16 +0900 |
| commit | c7354c5e306c80d25db838ff64d4f3d26a47bd7f (patch) | |
| tree | ad8ccd647431a0d04637ebe985e2677b81b55080 /packages/frontend/src/components/MkDriveFileThumbnail.vue | |
| parent | feat: media silence (#13842) (diff) | |
| download | sharkey-c7354c5e306c80d25db838ff64d4f3d26a47bd7f.tar.gz sharkey-c7354c5e306c80d25db838ff64d4f3d26a47bd7f.tar.bz2 sharkey-c7354c5e306c80d25db838ff64d4f3d26a47bd7f.zip | |
test(#10336): add `components/Mk[D-E].*` stories (#14118)
* test(storybook): add `components/Mk[D-E].*` stories
* fix: mock instance name
* fix: invalid `reactionAcceptance` value
* style: missing trailing commas
Diffstat (limited to 'packages/frontend/src/components/MkDriveFileThumbnail.vue')
| -rw-r--r-- | packages/frontend/src/components/MkDriveFileThumbnail.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/components/MkDriveFileThumbnail.vue b/packages/frontend/src/components/MkDriveFileThumbnail.vue index 706c9a55c7..2c47a70970 100644 --- a/packages/frontend/src/components/MkDriveFileThumbnail.vue +++ b/packages/frontend/src/components/MkDriveFileThumbnail.vue @@ -26,7 +26,7 @@ import ImgWithBlurhash from '@/components/MkImgWithBlurhash.vue'; const props = defineProps<{ file: Misskey.entities.DriveFile; - fit: string; + fit: 'cover' | 'contain'; }>(); const is = computed(() => { |