Downloading Improvments (#2623)

This commit is contained in:
Joe Milazzo 2024-01-18 16:58:40 -06:00 committed by GitHub
parent 7017f26fcf
commit 436b92e59c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 4 additions and 3 deletions

View file

@ -38,7 +38,7 @@
</div>
}
<div class="mb-3">
<label for="email" class="form-label visually-hidden">{{t('email-label')}}</label>
<label for="email" class="form-label">{{t('email-label')}}</label>
<input class="form-control custom-input" type="email" id="email" formControlName="email"
[class.is-invalid]="form.get('email')?.invalid && form.get('email')?.touched">
<div id="email-validations" class="invalid-feedback" *ngIf="form.get('email')?.errors">

View file

@ -158,6 +158,7 @@ export class UserPreferencesComponent implements OnInit, OnDestroy {
this.route.fragment.subscribe(frag => {
const tab = this.tabs.filter(item => item.fragment === frag);
console.log('tab: ', tab);
if (tab.length > 0) {
this.active = tab[0];
} else {