no message
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -5,17 +5,18 @@
|
|||||||
Messages
|
Messages
|
||||||
</button>
|
</button>
|
||||||
</ion-col>
|
</ion-col>
|
||||||
<ion-col text-center>
|
<!--ion-col text-center>
|
||||||
<button ion-button clear small>
|
<button ion-button clear small>
|
||||||
Taps
|
Taps
|
||||||
</button>
|
</button>
|
||||||
</ion-col>
|
</ion-col-->
|
||||||
</ion-row>
|
</ion-row>
|
||||||
</ion-header>
|
</ion-header>
|
||||||
|
|
||||||
<ion-content no-padding>
|
<ion-content no-padding>
|
||||||
<ion-list>
|
<ion-list>
|
||||||
<ion-item no-padding *ngFor="let profile of profiles">
|
<ng-container *ngFor="let profile of profiles">
|
||||||
|
<ion-item no-padding *ngIf="profile.messages?.length > 0">
|
||||||
<ion-thumbnail item-start (tap)="profilePictureTapped($event, profile)">
|
<ion-thumbnail item-start (tap)="profilePictureTapped($event, profile)">
|
||||||
<img [src]="'https://appsby.fitz.guru/urge/' + profile.details.pic.thumb">
|
<img [src]="'https://appsby.fitz.guru/urge/' + profile.details.pic.thumb">
|
||||||
</ion-thumbnail>
|
</ion-thumbnail>
|
||||||
@@ -31,5 +32,6 @@
|
|||||||
</ion-row>
|
</ion-row>
|
||||||
</ion-grid>
|
</ion-grid>
|
||||||
</ion-item>
|
</ion-item>
|
||||||
|
</ng-container>
|
||||||
</ion-list>
|
</ion-list>
|
||||||
</ion-content>
|
</ion-content>
|
||||||
|
|||||||
@@ -19,7 +19,7 @@
|
|||||||
<ion-col col-8>
|
<ion-col col-8>
|
||||||
<h2 class="display-name">{{this.profile.details.name}}</h2>
|
<h2 class="display-name">{{this.profile.details.name}}</h2>
|
||||||
</ion-col>
|
</ion-col>
|
||||||
<ion-col col-4 class="actions">
|
<ion-col col-4 class="actions" *ngIf="this.profile.messages?.length > 0">
|
||||||
<button ion-button icon-only clear (tap)="openChat($event, this.profile)">
|
<button ion-button icon-only clear (tap)="openChat($event, this.profile)">
|
||||||
<ion-icon name='ios-chatboxes-outline'></ion-icon>
|
<ion-icon name='ios-chatboxes-outline'></ion-icon>
|
||||||
</button>
|
</button>
|
||||||
|
|||||||
Reference in New Issue
Block a user