Fix: ReactionPicker se alinea a la izquierda en mensajes propios
All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 1m7s

- Agregada prop 'align' al ReactionPicker (left/right)
- Mensajes propios (fromMe): picker se alinea a la izquierda (right-0)
- Mensajes recibidos: picker se alinea a la derecha (left-0)
- Evita que el picker extienda la página horizontalmente
This commit is contained in:
2025-12-03 10:44:47 -06:00
parent 5007049bcf
commit f1d7be175b
2 changed files with 8 additions and 2 deletions

View File

@@ -37,6 +37,7 @@
<ReactionPicker
:visible="showReactionPicker"
:position="message.fromMe ? 'top' : 'bottom'"
:align="message.fromMe ? 'left' : 'right'"
@select="handleReaction"
@close="showReactionPicker = false"
/>