web-manager 3.2.65 → 3.2.66
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/account.js +4 -0
- package/package.json +1 -1
package/lib/account.js
CHANGED
@@ -478,6 +478,10 @@ Account.prototype._resolveAccount = function (firebaseUser, account, options) {
|
|
478
478
|
account.personal.telephone.countryCode = account.personal.telephone.countryCode || 0;
|
479
479
|
account.personal.telephone.national = account.personal.telephone.national || 0;
|
480
480
|
|
481
|
+
account.personal.company = account.personal.company || {};
|
482
|
+
account.personal.company.name = account.personal.company.name || '';
|
483
|
+
account.personal.company.position = account.personal.company.position || '';
|
484
|
+
|
481
485
|
// Set UI elements
|
482
486
|
// In a try/catch because this lib is used in node sometimes
|
483
487
|
try {
|
package/package.json
CHANGED