hotfix: Do not add Reply-To to recipients field collapsed when unfocus

(cherry picked from commit aa0c27ce1c9d7fdd579d0f25c6b7d8f4b50adf70)
This commit is contained in:
dab246
2025-10-10 15:28:23 +07:00
committed by Dat H. Pham
parent c9cb68f3ef
commit bddf29c604
4 changed files with 44 additions and 27 deletions
@@ -122,7 +122,7 @@ class ComposerView extends GetWidget<ComposerController> {
),
if (controller.recipientsCollapsedState.value == PrefixRecipientState.enabled)
RecipientsCollapsedComposerWidget(
listEmailAddress: controller.allListEmailAddress,
listEmailAddress: controller.allListEmailAddressWithoutReplyTo,
margin: ComposerStyle.mobileRecipientMargin,
onShowAllRecipientsAction: controller.showFullRecipients,
),
@@ -349,7 +349,7 @@ class ComposerView extends GetWidget<ComposerController> {
),
if (controller.recipientsCollapsedState.value == PrefixRecipientState.enabled)
RecipientsCollapsedComposerWidget(
listEmailAddress: controller.allListEmailAddress,
listEmailAddress: controller.allListEmailAddressWithoutReplyTo,
margin: ComposerStyle.desktopRecipientMargin,
onShowAllRecipientsAction: controller.showFullRecipients,
),
@@ -617,7 +617,7 @@ class ComposerView extends GetWidget<ComposerController> {
),
if (controller.recipientsCollapsedState.value == PrefixRecipientState.enabled)
RecipientsCollapsedComposerWidget(
listEmailAddress: controller.allListEmailAddress,
listEmailAddress: controller.allListEmailAddressWithoutReplyTo,
margin: ComposerStyle.desktopRecipientMargin,
onShowAllRecipientsAction: controller.showFullRecipients,
),