fix: Fix bubble design in RTL (#10683)

Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com>
This commit is contained in:
Shivam Mishra
2025-01-15 00:44:13 +05:30
committed by GitHub
parent b3d0d466ee
commit 7b31b5ad6e
8 changed files with 76 additions and 19 deletions

View File

@@ -14,7 +14,7 @@ const isTemplate = computed(() => {
});
const isEmpty = computed(() => {
return !content.value && !attachments.value.length;
return !content.value && !attachments.value?.length;
});
</script>