From 53dc8f0bcf50947a1636b473ebf116771a81d970 Mon Sep 17 00:00:00 2001 From: AllForNothing Date: Wed, 28 Oct 2020 12:29:33 +0800 Subject: [PATCH] Fix filter bug for replication rule list Signed-off-by: AllForNothing --- .../src/lib/components/replication/replication.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/portal/src/lib/components/replication/replication.component.ts b/src/portal/src/lib/components/replication/replication.component.ts index ebfe474b7..be3948872 100644 --- a/src/portal/src/lib/components/replication/replication.component.ts +++ b/src/portal/src/lib/components/replication/replication.component.ts @@ -178,6 +178,7 @@ export class ReplicationComponent implements OnInit, OnDestroy { this.totalCount = parseInt(xHeader, 0); } } + this.listReplicationRule.selectedRow = null; // Clear selection this.listReplicationRule.rules = response.body as ReplicationRule[]; this.listReplicationRule.loading = false; }, error => {