mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 07:43:35 +00:00
stub out bulk share
This commit is contained in:
@@ -50,11 +50,15 @@ export class CiphersComponent extends BaseCiphersComponent {
|
||||
}
|
||||
}
|
||||
|
||||
getSelected(): string[] {
|
||||
getSelected(): CipherView[] {
|
||||
if (this.ciphers == null) {
|
||||
return [];
|
||||
}
|
||||
return this.ciphers.filter((c) => !!(c as any).checked).map((c) => c.id);
|
||||
return this.ciphers.filter((c) => !!(c as any).checked);
|
||||
}
|
||||
|
||||
getSelectedIds(): string[] {
|
||||
return this.getSelected().map((c) => c.id);
|
||||
}
|
||||
|
||||
attachments(c: CipherView) {
|
||||
|
||||
Reference in New Issue
Block a user