Skip to content

Commit

Permalink
Merge branch 'dev' into staging
Browse files Browse the repository at this point in the history
  • Loading branch information
dweinholz committed Aug 27, 2024
2 parents 67e0dff + 75862db commit 3e0e753
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/app/vo_manager/voOverview.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
</select>
</div>

<div class="table-responsive">
<div>
<div class="mb-3 row">
<label for="table-complete-search" class="col-xs-3 col-sm-auto col-form-label">Full text search:</label>
<div class="col-xs-3 col-sm-auto">
Expand Down Expand Up @@ -740,7 +740,7 @@ <h4 class="modal-title">{{ emailHeader }}</h4>
class="form-group row"
[ngClass]="{
'has-danger': emailSub.invalid && (emailSub.dirty || emailSub.touched),
'has-success': emailSub.valid && (emailSub.dirty || emailSub.touched)
'has-success': emailSub.valid && (emailSub.dirty || emailSub.touched),
}"
>
<label class="col-md-12 control-label"><strong>Email subject*</strong></label>
Expand All @@ -757,7 +757,7 @@ <h4 class="modal-title">{{ emailHeader }}</h4>
#emailSub="ngModel"
[ngClass]="{
'is-invalid': emailSub.invalid && (emailSub.dirty || emailSub.touched),
'is-valid': emailSub.valid && (emailSub.dirty || emailSub.touched)
'is-valid': emailSub.valid && (emailSub.dirty || emailSub.touched),
}"
/>
</div>
Expand All @@ -777,7 +777,7 @@ <h4 class="modal-title">{{ emailHeader }}</h4>
pattern="([ ]*)(?!(^[.-].*|[^@]*[.-]@|.*\.{2,}.*)|^.{254}.)([a-zA-Z0-9!#$%&'*+\/=?^_`{|}~.-]+@)(?!-.*|.*-\.)([a-zA-Z0-9-]{1,63}\.)+[a-zA-Z]{2,15}([ ]*)"
[ngClass]="{
'is-invalid': emailRep.invalid && (emailRep.dirty || emailRep.touched),
'is-valid': emailRep.valid && (emailRep.dirty || emailRep.touched)
'is-valid': emailRep.valid && (emailRep.dirty || emailRep.touched),
}"
/>
</div>
Expand All @@ -797,7 +797,7 @@ <h4 class="modal-title">{{ emailHeader }}</h4>
#emailT="ngModel"
[ngClass]="{
'is-invalid': emailT.invalid && (emailT.dirty || emailT.touched),
'is-valid': emailT.valid && (emailT.dirty || emailT.touched)
'is-valid': emailT.valid && (emailT.dirty || emailT.touched),
}"
></textarea>
</div>
Expand Down

0 comments on commit 3e0e753

Please sign in to comment.