va-andrew
va-andrew
I would recommend doing this with CSS: ``` .phone-field-ext, .phone-field-ext+input { display: none; } ```
Hi, can you include some information why/how this might be caused by `PhoneField`?
Hi, I tried rendering `PhoneField` in a `StackedInline` and didn't encounter any issues. Can you reproduce using https://github.com/VeryApt/django-phone-field/tree/master/test_proj ?
Can you confirm whether this issue also affects a `CharField` with the same options and migration process? `PhoneField` is simply a thin wrapper around `CharField`, and I'm wondering whether this...
Hey, thanks for the notice! Overall, I wasn't expecting use of `null=True` with PhoneField, since it's somewhat of an antipattern with the `CharField` it's based on. However, `null=True, unique=True` is...