check for empty name on SIC importer
This commit is contained in:
parent
26d41d3cb9
commit
1b43f3facd
|
@ -844,6 +844,10 @@
|
||||||
fields: null
|
fields: null
|
||||||
};
|
};
|
||||||
|
|
||||||
|
if (!cipher.name || cipher.name === '') {
|
||||||
|
cipher.name = '--';
|
||||||
|
}
|
||||||
|
|
||||||
if (card.attr('type') === 'note') {
|
if (card.attr('type') === 'note') {
|
||||||
cipher.type = constants.cipherType.secureNote;
|
cipher.type = constants.cipherType.secureNote;
|
||||||
cipher.secureNote = {
|
cipher.secureNote = {
|
||||||
|
|
Loading…
Reference in New Issue