From a2b62755bcba262cf0cd78118a8c527a06477882 Mon Sep 17 00:00:00 2001 From: Thomas Rittson <31796059+eliykat@users.noreply.github.com> Date: Wed, 11 Aug 2021 08:24:39 +1000 Subject: [PATCH] Add back in refresh() in ciphers.component (#451) --- angular/src/components/ciphers.component.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/angular/src/components/ciphers.component.ts b/angular/src/components/ciphers.component.ts index 3c098fecf7d..092eef225e8 100644 --- a/angular/src/components/ciphers.component.ts +++ b/angular/src/components/ciphers.component.ts @@ -42,6 +42,10 @@ export class CiphersComponent { await this.load(filter, deleted); } + async refresh() { + await this.reload(this.filter, this.deleted); + } + async applyFilter(filter: (cipher: CipherView) => boolean = null) { this.filter = filter; await this.search(null);