Skip to content

Commit

Permalink
Merge branch 'main' into add-null-check-to-url-validation
Browse files Browse the repository at this point in the history
  • Loading branch information
auumgn committed Aug 4, 2023
2 parents e219189 + 397ef0b commit f20ca1c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -223,26 +223,28 @@ <h3 class="font-weight-bold font-size-16 mb-10">
<div class="form-group d-flex">
<input
type="radio"
id="trademarkLicenseYes"
class="form-control radio mr-8"
name="trademarkLicense"
value="Yes"
formControlName="trademarkLicense"
[ngClass]="{ 'outline-danger': editForm.get('trademarkLicense').invalid && editForm.get('trademarkLicense').dirty }"
/>
<label class="wide-text-25 font-size-14 font-weight-normal"
<label for="trademarkLicenseYes" class="wide-text-25 font-size-14 font-weight-normal"
><strong>YES</strong> - ORCID can use this organization's trademarked name and logos</label
>
</div>
<div class="form-group d-flex">
<input
type="radio"
id="trademarkLicenseNo"
class="form-control radio mr-8"
name="trademarkLicense"
value="No"
formControlName="trademarkLicense"
[ngClass]="{ 'outline-danger': editForm.get('trademarkLicense').invalid && editForm.get('trademarkLicense').dirty }"
/>
<label class="wide-text-25 font-size-14 font-weight-normal"
<label for="trademarkLicenseNo" class="wide-text-25 font-size-14 font-weight-normal"
><strong>NO</strong> - ORCID cannot use this organization's trademarked name and logos</label
>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -188,26 +188,28 @@ <h3 class="font-weight-bold font-size-16 mb-10">
<div class="form-group d-flex">
<input
type="radio"
id="trademarkLicenseYes"
class="form-control radio mr-8"
name="trademarkLicense"
value="Yes"
formControlName="trademarkLicense"
[ngClass]="{ 'outline-danger': editForm.get('trademarkLicense').invalid && editForm.get('trademarkLicense').dirty }"
/>
<label class="wide-text-25 font-size-14 font-weight-normal"
<label for="trademarkLicenseYes" class="wide-text-25 font-size-14 font-weight-normal"
><strong>YES</strong> - ORCID can use this organization's trademarked name and logos</label
>
</div>
<div class="form-group d-flex">
<input
type="radio"
id="trademarkLicenseNo"
class="form-control radio mr-8"
name="trademarkLicense"
value="No"
formControlName="trademarkLicense"
[ngClass]="{ 'outline-danger': editForm.get('trademarkLicense').invalid && editForm.get('trademarkLicense').dirty }"
/>
<label class="wide-text-25 font-size-14 font-weight-normal"
<label for="trademarkLicenseNo" class="wide-text-25 font-size-14 font-weight-normal"
><strong>NO</strong> - ORCID cannot use this organization's trademarked name and logos</label
>
</div>
Expand Down

0 comments on commit f20ca1c

Please sign in to comment.