MOBILE-3267 more: Filter site name in more tab
parent
ad85ded49f
commit
2cd6ef5347
|
@ -8,7 +8,7 @@
|
|||
<a ion-item core-user-link [userId]="siteInfo.userid" text-wrap>
|
||||
<ion-avatar core-user-avatar [user]="siteInfo" item-start></ion-avatar>
|
||||
<h2>{{siteInfo.fullname}}</h2>
|
||||
<ion-note>{{ siteName }}</ion-note>
|
||||
<ion-note><core-format-text [text]="siteName" contextLevel="system" [contextInstanceId]="0" [wsNotFiltered]="true"></core-format-text></ion-note>
|
||||
<ion-note>{{ siteUrl }}</ion-note>
|
||||
</a>
|
||||
<ion-item-divider></ion-item-divider>
|
||||
|
|
|
@ -413,7 +413,8 @@ export class CoreFormatTextDirective implements OnChanges {
|
|||
this.contextInstanceId = site.getSiteHomeId();
|
||||
}
|
||||
|
||||
this.filter = typeof this.filter == 'undefined' ? !!(this.contextLevel && this.contextInstanceId) : !!this.filter;
|
||||
this.filter = typeof this.filter == 'undefined' ?
|
||||
!!(this.contextLevel && typeof this.contextInstanceId != 'undefined') : !!this.filter;
|
||||
|
||||
result.options = {
|
||||
clean: this.utils.isTrueOrOne(this.clean),
|
||||
|
|
Loading…
Reference in New Issue