From f039ae582e2927554cc358254301de9bab96f00e Mon Sep 17 00:00:00 2001 From: bupd Date: Wed, 16 Oct 2024 17:23:07 +0530 Subject: [PATCH] update replication table columns * updates replication hidden columns order. Signed-off-by: bupd --- .../list-replication-rule.component.html | 6 +++--- .../list-replication-rule.component.ts | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/portal/src/app/base/left-side-nav/replication/replication/list-replication-rule/list-replication-rule.component.html b/src/portal/src/app/base/left-side-nav/replication/replication/list-replication-rule/list-replication-rule.component.html index 05540c66c6d..96f1c7caa64 100644 --- a/src/portal/src/app/base/left-side-nav/replication/replication/list-replication-rule/list-replication-rule.component.html +++ b/src/portal/src/app/base/left-side-nav/replication/replication/list-replication-rule/list-replication-rule.component.html @@ -122,17 +122,17 @@ - + {{ 'REPLICATION.BANDWIDTH' | translate }} - + {{ 'REPLICATION.DESCRIPTION' | translate }} - + {{ 'REPLICATION.REPLICATION_TRIGGER' | translate }} diff --git a/src/portal/src/app/base/left-side-nav/replication/replication/list-replication-rule/list-replication-rule.component.ts b/src/portal/src/app/base/left-side-nav/replication/replication/list-replication-rule/list-replication-rule.component.ts index ffd6b62ab72..0ec995dc720 100644 --- a/src/portal/src/app/base/left-side-nav/replication/replication/list-replication-rule/list-replication-rule.component.ts +++ b/src/portal/src/app/base/left-side-nav/replication/replication/list-replication-rule/list-replication-rule.component.ts @@ -100,7 +100,7 @@ export class ListReplicationRuleComponent implements OnInit, OnDestroy { paused: boolean = false; hiddenArray: boolean[] = getHiddenArrayFromLocalStorage( PageSizeMapKeys.LIST_REPLICATION_RULE_COMPONENT, - [false, false, false, false, false, false, false, true, true] + [false, false, false, false, false, false, true, true, false] ); @ViewChild('datagrid') datagrid: ClrDatagrid;