fix event time appears on left in hidden bubles

This commit is contained in:
Ajay Bura 2025-09-19 16:21:47 +05:30
parent f11911d64c
commit a0087964a7

View file

@ -40,19 +40,23 @@ export const BubbleLayout = as<'div', BubbleLayoutProps>(
</Box>
<Box grow="Yes" direction="Column">
{header}
<Box>
<Box
className={
hideBubble
? undefined
: classNames(css.BubbleContent, before ? css.BubbleContentArrowLeft : undefined)
}
direction="Column"
>
{!hideBubble && before ? <BubbleLeftArrow variant="SurfaceVariant" /> : null}
{children}
{hideBubble ? (
children
) : (
<Box>
<Box
className={
hideBubble
? undefined
: classNames(css.BubbleContent, before ? css.BubbleContentArrowLeft : undefined)
}
direction="Column"
>
{before ? <BubbleLeftArrow variant="SurfaceVariant" /> : null}
{children}
</Box>
</Box>
</Box>
)}
</Box>
</Box>
)