1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-11 05:43:41 +00:00

[PM-23378] clear selection after event on (#15465)

* clear selection after event on individual part

* added changes in org

* added clearSelection in refresh()

---------

Co-authored-by: Jason Ng <jng@bitwarden.com>
This commit is contained in:
Ketan Mehta
2025-08-06 19:15:38 +05:30
committed by GitHub
parent 29e16fc5e0
commit 8980016d2d
5 changed files with 14 additions and 1 deletions

View File

@@ -166,6 +166,10 @@ export class VaultItemsComponent<C extends CipherViewLike> {
);
}
clearSelection() {
this.selection.clear();
}
get showExtraColumn() {
return this.showCollections || this.showGroups || this.showOwner;
}