Made possible to have test TLDs with length of 1

This commit is contained in:
Pinga 2024-02-16 07:37:59 +02:00
parent 080988155e
commit ee48a0e67d
2 changed files with 3 additions and 3 deletions

View file

@ -45,7 +45,7 @@
</div>
<div class="mb-3">
<label for="tldTypeSelector" class="form-label">{{ __('TLD Type') }}</label>
<div class="form-control-plaintext">{{ tld_u|length == 3 ? 'ccTLD' : (tld_u|length > 3 ? 'gTLD' : '') }}</div>
<div class="form-control-plaintext">{{ tld_u|length == 3 ? 'ccTLD' : (tld_u|length > 3 ? 'gTLD' : (tld_u|length == 2 ? 'Test TLD' : '')) }}</div>
</div>
<div class="mb-3">
<label for="scriptDropdown" class="form-label">{{ __('Supported Script') }}</label>