Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

6622 show no members message #6718

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Small fixes to requested changes
  • Loading branch information
Mutugiii committed Jul 2, 2020
commit df58a6123ad07994a0425c7abdf0d55f955b23e5
6 changes: 3 additions & 3 deletions src/app/users/users-table.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -130,12 +130,12 @@
<mat-header-row *matHeaderRowDef="displayedColumns"></mat-header-row>
<mat-row [ngClass]="{'cursor-pointer':!isDialog}" *matRowDef= "let row; columns: displayedColumns;" (click)="gotoProfileView(row.doc.name)" [ngClass]="{highlight:isSelected(row.doc)}"></mat-row>
</mat-table>
<ng-template #noUserFoundMessage>
<div class="view-container">No members available</div>
</ng-template>
<mat-paginator #paginator
[pageSize]="50"
[pageSizeOptions]="[5, 10, 20, 50, 100, 200]"
(page)="onPaginateChange($event)">
</mat-paginator>
<ng-template #noUserFoundMessage>
<div>No members available</div>
</ng-template>
</div>