[Connect Admin]:personal-info.component.ts: Updated message of visibility | Changed visible default value to false (invisible).

This commit is contained in:
Konstantina Galouni 2022-12-09 17:16:08 +02:00
parent 6bbeff9152
commit 3ab4651ccd
1 changed files with 2 additions and 2 deletions

View File

@ -78,7 +78,7 @@ declare var UIkit;
[formInput]="curatorFb.get('name')" inputClass="border-bottom normal-font-size"></div>
<div class="uk-width-1-1 uk-margin-small-top">
<mat-slide-toggle class="uk-width-small uk-margin-small-top"
uk-tooltip="title: If a curator is visible and has created a profile, they will appear in the Gateway. Otherwise, not.; pos: bottom"
uk-tooltip="title: If your personal info is visible, it will appear in the Gateway. Otherwise, not.; pos: bottom"
[formControl]="curatorFb.get('visible')">
<span class="uk-flex uk-flex-center">
{{curatorFb.get('visible').getRawValue()?' Visible':'Invisible'}}
@ -274,7 +274,7 @@ export class PersonalInfoComponent implements OnInit, OnDestroy {
this.curator.affiliations = [];
this.curator.bio = '';
this.curator.photo = null;
this.curator.visible = true;
this.curator.visible = false;
}
this.curatorsPageStatus();
}