Skip to content
Snippets Groups Projects
Commit c3ffd92b authored by Hamza HRAMCHI's avatar Hamza HRAMCHI
Browse files

FEAT #15314 TIME 0:05 hide table and pagination when a file does not exist

parent c41f0259
No related branches found
No related tags found
No related merge requests found
...@@ -33,12 +33,12 @@ ...@@ -33,12 +33,12 @@
</div> </div>
</div> </div>
<div class="row" style="margin: 0px;"> <div class="row" style="margin: 0px;">
<div class="col-md-12"> <div *ngIf="csvData.length !== 0" class="col-md-12">
<mat-paginator #paginator [length]="100" [hidePageSize]="true" [pageSize]="8"> <mat-paginator #paginator [length]="100" [hidePageSize]="true" [pageSize]="8">
</mat-paginator> </mat-paginator>
</div> </div>
</div> </div>
<div style="width:100%;box-shadow: inset 0px 0px 5px 0px rgba(0,0,0,0.75);padding:10px;"> <div *ngIf="csvData.length !== 0" style="width:100%;box-shadow: inset 0px 0px 5px 0px rgba(0,0,0,0.75);padding:10px;">
<div style="overflow: auto;"> <div style="overflow: auto;">
<mat-table *ngIf="csvData.length > 0" #table [dataSource]="dataSource" [style.width.px]="contactColumns.length * 300"> <mat-table *ngIf="csvData.length > 0" #table [dataSource]="dataSource" [style.width.px]="contactColumns.length * 300">
<ng-container *ngFor="let column of contactColumns;let i=index;"> <ng-container *ngFor="let column of contactColumns;let i=index;">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment