mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-23 11:56:00 +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) {
|
if (view.collectionIds || req.collectionIds) {
|
||||||
const set = new Set((view.collectionIds ?? []).concat(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.name = req.name;
|
||||||
view.notes = req.notes;
|
view.notes = req.notes;
|
||||||
|
Loading…
Reference in New Issue
Block a user