Skip to content

Commit

Permalink
update replication table columns
Browse files Browse the repository at this point in the history
* updates replication hidden columns order.

Signed-off-by: bupd <bupdprasanth@gmail.com>
  • Loading branch information
bupd committed Oct 16, 2024
1 parent 9d57a49 commit f039ae5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,17 +122,17 @@
</ng-template>
</clr-dg-column>
<clr-dg-column [clrDgSortBy]="'speed'">
<ng-template [clrDgHideableColumn]="{ hidden: hiddenArray[7] }">
<ng-template [clrDgHideableColumn]="{ hidden: hiddenArray[6] }">
{{ 'REPLICATION.BANDWIDTH' | translate }}
</ng-template>
</clr-dg-column>
<clr-dg-column [clrDgField]="'description'">
<ng-template [clrDgHideableColumn]="{ hidden: hiddenArray[8] }">
<ng-template [clrDgHideableColumn]="{ hidden: hiddenArray[7] }">
{{ 'REPLICATION.DESCRIPTION' | translate }}
</ng-template>
</clr-dg-column>
<clr-dg-column>
<ng-template [clrDgHideableColumn]="{ hidden: hiddenArray[6] }">
<ng-template [clrDgHideableColumn]="{ hidden: hiddenArray[8] }">
{{ 'REPLICATION.REPLICATION_TRIGGER' | translate }}
</ng-template>
</clr-dg-column>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit f039ae5

Please sign in to comment.