hotfix: Do not add Reply-To to recipients field collapsed when unfocus
(cherry picked from commit aa0c27ce1c9d7fdd579d0f25c6b7d8f4b50adf70)
This commit is contained in:
@@ -128,7 +128,7 @@ class ComposerView extends GetWidget<ComposerController> {
|
||||
Obx(() {
|
||||
if (controller.recipientsCollapsedState.value == PrefixRecipientState.enabled) {
|
||||
return RecipientsCollapsedComposerWidget(
|
||||
listEmailAddress: controller.allListEmailAddress,
|
||||
listEmailAddress: controller.allListEmailAddressWithoutReplyTo,
|
||||
margin: ComposerStyle.mobileRecipientMargin,
|
||||
onShowAllRecipientsAction: controller.showFullRecipients,
|
||||
);
|
||||
@@ -307,7 +307,7 @@ class ComposerView extends GetWidget<ComposerController> {
|
||||
Obx(() {
|
||||
if (controller.recipientsCollapsedState.value == PrefixRecipientState.enabled) {
|
||||
return RecipientsCollapsedComposerWidget(
|
||||
listEmailAddress: controller.allListEmailAddress,
|
||||
listEmailAddress: controller.allListEmailAddressWithoutReplyTo,
|
||||
margin: ComposerStyle.mobileRecipientMargin,
|
||||
onShowAllRecipientsAction: controller.showFullRecipients,
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user