mirror of
https://github.com/getnamingo/registry.git
synced 2025-07-03 01:23:22 +02:00
Small UI bug fixed
This commit is contained in:
parent
caadd25837
commit
fd871e9b8d
2 changed files with 5 additions and 4 deletions
|
@ -1142,7 +1142,8 @@ class DomainsController extends Controller
|
|||
'domainHosts' => $domainHosts,
|
||||
'domainContacts' => $domainContacts,
|
||||
'registrar' => $registrar,
|
||||
'registrars' => $registrars_list,
|
||||
'registrar_details' => $registrars,
|
||||
'registrars_list' => $registrars_list,
|
||||
'currentUri' => $uri,
|
||||
'countries' => $countries,
|
||||
'csrfTokenName' => $csrfTokenName,
|
||||
|
|
|
@ -65,7 +65,7 @@
|
|||
</div>
|
||||
<div class="datagrid-item">
|
||||
<div class="datagrid-title">{{ __('Registrar') }}</div>
|
||||
<div class="datagrid-content">{{ registrar.name }}</div>
|
||||
<div class="datagrid-content">{{ registrar_details.name }}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -422,11 +422,11 @@
|
|||
</label>
|
||||
</div>
|
||||
|
||||
{% if registrars and not registrar %}
|
||||
{% if registrars_list and not registrar %}
|
||||
<div class="form-group mb-3">
|
||||
<label for="registrarDropdown2" class="form-label required">{{ __('Select Registrar') }}</label>
|
||||
<select id="registrarDropdown2" name="registrar" class="form-select" required="required">
|
||||
{% for registrar in registrars %}
|
||||
{% for registrar in registrars_list %}
|
||||
<option value="{{ registrar.id }}">{{ registrar.name }}</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue