Skip to content

Commit

Permalink
Remove paginator from history page (#2882)
Browse files Browse the repository at this point in the history
  • Loading branch information
reiterl authored Oct 24, 2023
1 parent 5602153 commit 1f6e035
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,4 @@
(click)="onClickRow(row)"
></mat-row>
</mat-table>

<mat-paginator [pageSizeOptions]="pageSizes"></mat-paginator>
</mat-card>
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,6 @@ export class HistoryListComponent extends BaseMeetingComponent implements OnInit

public dataSource: MatTableDataSource<HistoryPosition> = new MatTableDataSource<HistoryPosition>();

public pageSizes = [50, 100, 150, 200, 250];

/**
* The form for the selection of the model
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import { MatLegacyCardModule as MatCardModule } from '@angular/material/legacy-c
import { MatLegacyOptionModule as MatOptionModule } from '@angular/material/legacy-core';
import { MatLegacyFormFieldModule as MatFormFieldModule } from '@angular/material/legacy-form-field';
import { MatLegacyInputModule as MatInputModule } from '@angular/material/legacy-input';
import { MatLegacyPaginatorModule as MatPaginatorModule } from '@angular/material/legacy-paginator';
import { MatLegacySelectModule as MatSelectModule } from '@angular/material/legacy-select';
import { MatLegacyTableModule as MatTableModule } from '@angular/material/legacy-table';
import { OpenSlidesTranslationModule } from 'src/app/site/modules/translations';
Expand All @@ -30,7 +29,6 @@ import { HistoryRoutingModule } from './history-routing.module';
HistoryRoutingModule,
MatCardModule,
MatTableModule,
MatPaginatorModule,
MatIconModule,
MatInputModule,
MatFormFieldModule,
Expand Down

0 comments on commit 1f6e035

Please sign in to comment.