fix lint issues

Signed-off-by: Anna No <anna.no@xored.com>
This commit is contained in:
Anna No 2022-04-14 00:46:30 +07:00
parent 01d6da49d9
commit 9c9287770c
No known key found for this signature in database
GPG Key ID: 08C11FFC23177C87

View File

@ -32,7 +32,7 @@
attachments = await client.findAll(attachment.class.Attachment, { space: value.space, attachedTo: value._id }) attachments = await client.findAll(attachment.class.Attachment, { space: value.space, attachedTo: value._id })
} }
$: value.attachments > 0 && fetch() $: value?.attachments && value.attachments > 0 && fetch()
</script> </script>