@quandis/qbo4.ui 4.0.1-CI-20240514-221344 → 4.0.1-CI-20240514-221435
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/src/qbo/qbo-contact.js
CHANGED
|
@@ -103,7 +103,7 @@ let QboContact = class QboContact extends LitElement {
|
|
|
103
103
|
</div>
|
|
104
104
|
<div class="${this.colThreeClass}">
|
|
105
105
|
<label for="USSSN" class="${this.formLabelSmallClass}">SSN</label>
|
|
106
|
-
<qbo-ssn
|
|
106
|
+
<qbo-ssn ssn="${this.jsonData.Root.ContactItem?.USSSN}" contactId="${this.contactId}"></qbo-ssn>
|
|
107
107
|
</div>
|
|
108
108
|
<div class="${this.colThreeClass}">
|
|
109
109
|
<label for="TIN" class="${this.formLabelSmallClass}">TIN</label>
|
package/src/qbo/qbo-contact.ts
CHANGED
|
@@ -128,7 +128,7 @@ export class QboContact extends LitElement {
|
|
|
128
128
|
</div>
|
|
129
129
|
<div class="${this.colThreeClass}">
|
|
130
130
|
<label for="USSSN" class="${this.formLabelSmallClass}">SSN</label>
|
|
131
|
-
<qbo-ssn
|
|
131
|
+
<qbo-ssn ssn="${this.jsonData.Root.ContactItem?.USSSN}" contactId="${this.contactId}"></qbo-ssn>
|
|
132
132
|
</div>
|
|
133
133
|
<div class="${this.colThreeClass}">
|
|
134
134
|
<label for="TIN" class="${this.formLabelSmallClass}">TIN</label>
|