Skip to content
Snippets Groups Projects
Commit cec49361 authored by Klaus-Dieter Quibeldey-Cirkel's avatar Klaus-Dieter Quibeldey-Cirkel
Browse files

exchange user icon

parent 90fcf98a
Branches
Tags
No related merge requests found
...@@ -171,7 +171,7 @@ ...@@ -171,7 +171,7 @@
(focus)="hideCommentsList=true" (focus)="hideCommentsList=true"
(click)="filterComments(owner)" (click)="filterComments(owner)"
aria-labelledby="comment"> aria-labelledby="comment">
<mat-icon [ngClass]="{owner: 'owner-icon'}[currentFilter]">person</mat-icon> <mat-icon [ngClass]="{owner: 'owner-icon'}[currentFilter]">person_pin_circle</mat-icon>
<span>{{ 'comment-list.filter-owner' | translate }}</span> <span>{{ 'comment-list.filter-owner' | translate }}</span>
</button> </button>
......
...@@ -264,7 +264,7 @@ ...@@ -264,7 +264,7 @@
fxLayoutAlign="center center" fxLayoutAlign="center center"
matTooltip="{{ 'comment-page.user-number' | translate }}" matTooltip="{{ 'comment-page.user-number' | translate }}"
(click)="this.clickedUserNumber.emit(comment.userNumber)"> (click)="this.clickedUserNumber.emit(comment.userNumber)">
<mat-icon class="user-icon">person</mat-icon> <mat-icon class="user-icon">person_pin_circle</mat-icon>
<strong> <strong>
{{comment.userNumber}} {{comment.userNumber}}
</strong> </strong>
......
...@@ -62,7 +62,7 @@ ...@@ -62,7 +62,7 @@
<p>{{'question-wall.filter-tag' | translate}}</p> <p>{{'question-wall.filter-tag' | translate}}</p>
</button> </button>
<button ars-btn (click)="openUserMap()" matRipple aria-labelledby="user-lbl"> <button ars-btn (click)="openUserMap()" matRipple aria-labelledby="user-lbl">
<i>person</i> <i>person_pin_circle</i>
<p>{{'question-wall.filter-user'| translate}}</p> <p>{{'question-wall.filter-user'| translate}}</p>
</button> </button>
</ars-col> </ars-col>
...@@ -77,7 +77,7 @@ ...@@ -77,7 +77,7 @@
<div class="questionwall-present-box-inner"> <div class="questionwall-present-box-inner">
<ng-container *ngIf="commentFocus"> <ng-container *ngIf="commentFocus">
<ars-row class="questionwall-present-meta"> <ars-row class="questionwall-present-meta">
<i class="questionwall-icon questionwall-present-meta-icon">person</i> <i class="questionwall-icon questionwall-present-meta-icon">person_pin_circle</i>
<h2 class="questionwall-present-meta-user">{{commentFocus.comment.userNumber}}</h2> <h2 class="questionwall-present-meta-user">{{commentFocus.comment.userNumber}}</h2>
<h2 class="questionwall-present-meta-timestamp">{{commentFocus.timeAgo}}</h2> <h2 class="questionwall-present-meta-timestamp">{{commentFocus.timeAgo}}</h2>
</ars-row> </ars-row>
...@@ -176,7 +176,7 @@ ...@@ -176,7 +176,7 @@
(click)="focusComment(comment)" (click)="focusComment(comment)"
style="box-sizing:border-box;padding:16px;cursor:pointer"> style="box-sizing:border-box;padding:16px;cursor:pointer">
<ars-col class="questionwall-comment-meta"> <ars-col class="questionwall-comment-meta">
<i class="questionwall-icon">person</i> <i class="questionwall-icon">person_pin_circle</i>
<p (click)="filterUser(comment);" class="questionwall-comment-user" matRipple>{{comment.comment.userNumber}}</p> <p (click)="filterUser(comment);" class="questionwall-comment-user" matRipple>{{comment.comment.userNumber}}</p>
<p class="questionwall-comment-timestamp">{{comment.timeAgo}}</p> <p class="questionwall-comment-timestamp">{{comment.timeAgo}}</p>
</ars-col> </ars-col>
...@@ -225,7 +225,7 @@ ...@@ -225,7 +225,7 @@
</ars-col> </ars-col>
<ars-col ars-btn-wrp [xp]="24" [extra]="true"> <ars-col ars-btn-wrp [xp]="24" [extra]="true">
<button ars-btn class="pseudo-button"> <button ars-btn class="pseudo-button">
<i>person</i> <i>person_pin_circle</i>
<p>{{'question-wall.filter-user' | translate}}</p> <p>{{'question-wall.filter-user' | translate}}</p>
</button> </button>
</ars-col> </ars-col>
......
...@@ -277,7 +277,7 @@ export class QuestionWallComponent implements OnInit, AfterViewInit, OnDestroy { ...@@ -277,7 +277,7 @@ export class QuestionWallComponent implements OnInit, AfterViewInit, OnDestroy {
} }
filterUserByNumber(user: number) { filterUserByNumber(user: number) {
this.filter('person', false, 'question-wall.filter-user', user + '', this.filter('person_pin_circle', false, 'question-wall.filter-user', user + '',
x => x.comment.userNumber === user); x => x.comment.userNumber === user);
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment