diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2022-07-05 22:25:34 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2022-07-05 22:25:34 +0900 |
| commit | 60710805d506b1fff1c53336675a3cdc14f7df10 (patch) | |
| tree | 10203c472bd7a9df924d060c07070ef3d52a97fd /packages/client/src/components | |
| parent | enhance(client): improve usability (diff) | |
| download | misskey-60710805d506b1fff1c53336675a3cdc14f7df10.tar.gz misskey-60710805d506b1fff1c53336675a3cdc14f7df10.tar.bz2 misskey-60710805d506b1fff1c53336675a3cdc14f7df10.zip | |
chore(client): fix type
Diffstat (limited to 'packages/client/src/components')
| -rw-r--r-- | packages/client/src/components/img-with-blurhash.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/client/src/components/img-with-blurhash.vue b/packages/client/src/components/img-with-blurhash.vue index 06ad764403..80d7c201a4 100644 --- a/packages/client/src/components/img-with-blurhash.vue +++ b/packages/client/src/components/img-with-blurhash.vue @@ -11,7 +11,7 @@ import { decode } from 'blurhash'; const props = withDefaults(defineProps<{ src?: string | null; - hash: string; + hash?: string; alt?: string; title?: string | null; size?: number; |