Outgoing mails: Fix wrong filter statement (PRETIXEU-CZZ)

This commit is contained in:
Raphael Michel
2026-02-11 13:11:02 +01:00
parent 99c257d392
commit f9f6ee94ae

View File

@@ -2820,8 +2820,8 @@ class DeviceFilterForm(FilterForm):
class OutgoingMailFilterForm(FilterForm):
orders = {
'date': 'd',
'-date': '-d',
'date': 'created',
'-date': '-created',
}
query = forms.CharField(
label=_('Search email address or subject'),