mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-12-04 19:15:30 +00:00
Fixed issue with all unassigned zones being selected after a new account's name fails to validate (#1530)
This commit is contained in:
commit
9ddfde02b8
@ -133,7 +133,7 @@
|
|||||||
</option>
|
</option>
|
||||||
{% endwith %}
|
{% endwith %}
|
||||||
{% else %}
|
{% else %}
|
||||||
<option {% if account.id == domain.account_id %}selected{% endif %}
|
<option {% if account.id and account.id == domain.account_id %}selected{% endif %}
|
||||||
value="{{ domain.name }}">
|
value="{{ domain.name }}">
|
||||||
{{ domain.name }}
|
{{ domain.name }}
|
||||||
</option>
|
</option>
|
||||||
|
Loading…
Reference in New Issue
Block a user