diff --git a/src/app/services/importService.js b/src/app/services/importService.js index 3d3df78699..fe4f06015f 100644 --- a/src/app/services/importService.js +++ b/src/app/services/importService.js @@ -743,6 +743,7 @@ } else if (cipher.type === constants.cipherType.card) { cipher.card = parseCard(value); + cipher.notes = value.notes && value.notes !== '' ? value.notes : null; } else if (cipher.type === constants.cipherType.identity) { cipher.identity = { @@ -764,6 +765,8 @@ phone: value.phone && value.phone !== '' ? value.phone : null }; + cipher.notes = value.notes && value.notes !== '' ? value.notes : null; + if (cipher.identity.title) { cipher.identity.title = cipher.identity.title.charAt(0).toUpperCase() + cipher.identity.title.slice(1);