summaryrefslogtreecommitdiff
path: root/packages/client/src/components
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2022-07-05 22:25:34 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2022-07-05 22:25:34 +0900
commit60710805d506b1fff1c53336675a3cdc14f7df10 (patch)
tree10203c472bd7a9df924d060c07070ef3d52a97fd /packages/client/src/components
parentenhance(client): improve usability (diff)
downloadmisskey-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.vue2
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;