aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_elements/form-dataset/form-dataset.component.html
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/app/_elements/form-dataset/form-dataset.component.html')
-rw-r--r--frontend/src/app/_elements/form-dataset/form-dataset.component.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/frontend/src/app/_elements/form-dataset/form-dataset.component.html b/frontend/src/app/_elements/form-dataset/form-dataset.component.html
index d685458a..8965d451 100644
--- a/frontend/src/app/_elements/form-dataset/form-dataset.component.html
+++ b/frontend/src/app/_elements/form-dataset/form-dataset.component.html
@@ -47,10 +47,10 @@
<input class="file" id="file-upload" (change)="changeListener($event)" #fileInput type="file" accept=".csv">
<div class="mt-5 datatable">
- <div class="">
- <button mat-button [ngClass]="{'hidden': !tableData.hasInput}" (click)="goBack()"><mat-icon>keyboard_arrow_left</mat-icon></button>
- {{((this.begin+1)/10)+1}}
- <button mat-button [ngClass]="{'hidden': !tableData.hasInput}" (click)="goForward()"><mat-icon>keyboard_arrow_right</mat-icon></button>
+ <div [ngClass]="{'hidden': (!existingFlag)}">
+ <button mat-button (click)="goBack()"><mat-icon>keyboard_arrow_left</mat-icon></button>
+ <div style="display: inline;">{{((this.begin+1)/10)+1}}</div>
+ <button mat-button (click)="goForward()"><mat-icon>keyboard_arrow_right</mat-icon></button>
</div>
<app-datatable [tableData]="tableData"></app-datatable>
</div>