From 220b2ee8e3a66a40d4253c07d87bf4c40a3d829b Mon Sep 17 00:00:00 2001 From: rusikv Date: Thu, 7 Dec 2023 15:08:49 +0200 Subject: [PATCH 1/2] UI: increased page size for rule-chain-select --- .../shared/components/rule-chain/rule-chain-select.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui-ngx/src/app/shared/components/rule-chain/rule-chain-select.component.ts b/ui-ngx/src/app/shared/components/rule-chain/rule-chain-select.component.ts index 003d85b751..1610db23eb 100644 --- a/ui-ngx/src/app/shared/components/rule-chain/rule-chain-select.component.ts +++ b/ui-ngx/src/app/shared/components/rule-chain/rule-chain-select.component.ts @@ -65,7 +65,7 @@ export class RuleChainSelectComponent implements ControlValueAccessor, OnInit { } ngOnInit() { - const pageLink = new PageLink(100, 0, null, { + const pageLink = new PageLink(1000, 0, null, { property: 'name', direction: Direction.ASC }); From 54914f9851d54ed678106e59a0febef3bb984505 Mon Sep 17 00:00:00 2001 From: rusikv Date: Thu, 7 Dec 2023 17:31:49 +0200 Subject: [PATCH 2/2] UI: change page size for rule-chain-select to 1024 --- .../shared/components/rule-chain/rule-chain-select.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui-ngx/src/app/shared/components/rule-chain/rule-chain-select.component.ts b/ui-ngx/src/app/shared/components/rule-chain/rule-chain-select.component.ts index 1610db23eb..d9f2f90cc8 100644 --- a/ui-ngx/src/app/shared/components/rule-chain/rule-chain-select.component.ts +++ b/ui-ngx/src/app/shared/components/rule-chain/rule-chain-select.component.ts @@ -65,7 +65,7 @@ export class RuleChainSelectComponent implements ControlValueAccessor, OnInit { } ngOnInit() { - const pageLink = new PageLink(1000, 0, null, { + const pageLink = new PageLink(1024, 0, null, { property: 'name', direction: Direction.ASC });