diff --git a/tickets/forms.py b/tickets/forms.py index ff6c099..4616494 100644 --- a/tickets/forms.py +++ b/tickets/forms.py @@ -17,7 +17,7 @@ class Meta: def __init__(self, *args, **kwargs): instance = kwargs.get("instance") - initial = {} + initial = kwargs.pop('initial', {}) # pop to avoid mulitple values in super call if instance: customer_full_name_split = instance.customer_full_name.split(