mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-09 09:51:02 +01:00
Use iterator compatible Array instantiation (#324)
This commit is contained in:
parent
ba742f72d8
commit
baca6d7966
@ -37,7 +37,7 @@ export class Cipher {
|
||||
}
|
||||
if (view.collectionIds || req.collectionIds) {
|
||||
const set = new Set((view.collectionIds ?? []).concat(req.collectionIds ?? []));
|
||||
view.collectionIds = [...set];
|
||||
view.collectionIds = Array.from(set.values());
|
||||
}
|
||||
view.name = req.name;
|
||||
view.notes = req.notes;
|
||||
|
Loading…
Reference in New Issue
Block a user