[Connect Admin]:personal-info.component.ts: Updated message of visibility | Changed visible default value to false (invisible).
This commit is contained in:
parent
6bbeff9152
commit
3ab4651ccd
|
@ -78,7 +78,7 @@ declare var UIkit;
|
||||||
[formInput]="curatorFb.get('name')" inputClass="border-bottom normal-font-size"></div>
|
[formInput]="curatorFb.get('name')" inputClass="border-bottom normal-font-size"></div>
|
||||||
<div class="uk-width-1-1 uk-margin-small-top">
|
<div class="uk-width-1-1 uk-margin-small-top">
|
||||||
<mat-slide-toggle class="uk-width-small 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')">
|
[formControl]="curatorFb.get('visible')">
|
||||||
<span class="uk-flex uk-flex-center">
|
<span class="uk-flex uk-flex-center">
|
||||||
{{curatorFb.get('visible').getRawValue()?' Visible':'Invisible'}}
|
{{curatorFb.get('visible').getRawValue()?' Visible':'Invisible'}}
|
||||||
|
@ -274,7 +274,7 @@ export class PersonalInfoComponent implements OnInit, OnDestroy {
|
||||||
this.curator.affiliations = [];
|
this.curator.affiliations = [];
|
||||||
this.curator.bio = '';
|
this.curator.bio = '';
|
||||||
this.curator.photo = null;
|
this.curator.photo = null;
|
||||||
this.curator.visible = true;
|
this.curator.visible = false;
|
||||||
}
|
}
|
||||||
this.curatorsPageStatus();
|
this.curatorsPageStatus();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue