diff --git a/ui/src/components/BlobPreview.vue b/ui/src/components/BlobPreview.vue index 2f22dd1..af9c248 100644 --- a/ui/src/components/BlobPreview.vue +++ b/ui/src/components/BlobPreview.vue @@ -20,19 +20,19 @@ export default defineComponent({ props: { address: { type: String, - required: true, - }, + required: true + } }, computed: { mimeType(): string | undefined { return this.attributes.find(([_, e]) => e.attribute === "FILE_MIME")?.[1] .value.c; - }, + } }, setup(props) { const { attributes, backlinks, error } = useEntity(props.address); return { attributes }; - }, + } });