Changing orders: Default to not notifying the user (#3056)

This commit is contained in:
Raphael Michel
2023-01-24 16:16:29 +01:00
committed by GitHub
parent 433262f6fc
commit fdcad926f9

View File

@@ -270,7 +270,7 @@ class OtherOperationsForm(forms.Form):
notify = forms.BooleanField(
label=_('Notify user'),
required=False,
initial=True,
initial=False,
help_text=_(
'Send an email to the customer notifying that their order has been changed.'
)