From 220b2ee8e3a66a40d4253c07d87bf4c40a3d829b Mon Sep 17 00:00:00 2001 From: rusikv Date: Thu, 7 Dec 2023 15:08:49 +0200 Subject: [PATCH] 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 });