From 7c8a7fee1e0b5930a3fd6a319011601984d10f59 Mon Sep 17 00:00:00 2001 From: Ludwig Reiter Date: Thu, 12 Oct 2023 10:32:42 +0200 Subject: [PATCH 1/2] Remove paginator from history page --- .../history/components/history-list/history-list.component.html | 2 -- .../history/components/history-list/history-list.component.ts | 2 -- 2 files changed, 4 deletions(-) diff --git a/client/src/app/site/pages/meetings/pages/history/components/history-list/history-list.component.html b/client/src/app/site/pages/meetings/pages/history/components/history-list/history-list.component.html index a413e163cb..f912324376 100644 --- a/client/src/app/site/pages/meetings/pages/history/components/history-list/history-list.component.html +++ b/client/src/app/site/pages/meetings/pages/history/components/history-list/history-list.component.html @@ -84,6 +84,4 @@ (click)="onClickRow(row)" > - - diff --git a/client/src/app/site/pages/meetings/pages/history/components/history-list/history-list.component.ts b/client/src/app/site/pages/meetings/pages/history/components/history-list/history-list.component.ts index c6c87eafef..72899bd90c 100644 --- a/client/src/app/site/pages/meetings/pages/history/components/history-list/history-list.component.ts +++ b/client/src/app/site/pages/meetings/pages/history/components/history-list/history-list.component.ts @@ -52,8 +52,6 @@ export class HistoryListComponent extends BaseMeetingComponent implements OnInit public dataSource: MatTableDataSource = new MatTableDataSource(); - public pageSizes = [50, 100, 150, 200, 250]; - /** * The form for the selection of the model */ From 0e291899a43c3a8cf0adeb6c229cd61e6487e833 Mon Sep 17 00:00:00 2001 From: Ludwig Reiter Date: Mon, 23 Oct 2023 10:27:20 +0200 Subject: [PATCH 2/2] Rm surplus MatPaginatorModule from history module --- .../src/app/site/pages/meetings/pages/history/history.module.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/client/src/app/site/pages/meetings/pages/history/history.module.ts b/client/src/app/site/pages/meetings/pages/history/history.module.ts index bb4eca971c..cf08dc6f0f 100644 --- a/client/src/app/site/pages/meetings/pages/history/history.module.ts +++ b/client/src/app/site/pages/meetings/pages/history/history.module.ts @@ -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'; @@ -29,7 +28,6 @@ import { HistoryRoutingModule } from './history-routing.module'; HistoryRoutingModule, MatCardModule, MatTableModule, - MatPaginatorModule, MatIconModule, MatInputModule, MatFormFieldModule,