Skip to content

Commit 14af580

Browse files
Merge branch 'main' into fix-tests
2 parents a91a51e + f271859 commit 14af580

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

projects/observability/src/shared/components/log-events/log-events-table.component.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ describe('LogEventsTableComponent', () => {
5151
id: 'summary'
5252
})
5353
]);
54-
expect(spectator.query(TableComponent)!.pageable).toBe(true);
54+
expect(spectator.query(TableComponent)!.pageable).toBe(false);
5555
expect(spectator.query(TableComponent)!.detailContent).not.toBeNull();
5656

5757
runFakeRxjs(({ expectObservable }) => {

projects/observability/src/shared/components/log-events/log-events-table.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export const enum LogEventsTableViewType {
2929
<ht-table
3030
[columnConfigs]="this.columnConfigs"
3131
[data]="this.dataSource"
32-
[pageable]="true"
32+
[pageable]="false"
3333
[resizable]="false"
3434
mode=${TableMode.Detail}
3535
[detailContent]="detailContent"

0 commit comments

Comments
 (0)