sf-i-events 1.0.712 → 1.0.713
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 +1 -1
- package/sf-i-events.js +1 -1
- package/src/sf-i-events.ts +1 -1
package/package.json
CHANGED
package/sf-i-events.js
CHANGED
|
@@ -8321,7 +8321,7 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
8321
8321
|
}
|
|
8322
8322
|
if (equal) {
|
|
8323
8323
|
multiArr[i].preselectedValues = JSON.stringify(taggingArray.data.mappings.mappings[j][colName]);
|
|
8324
|
-
if (taggingArray.data.mappings.mappings[j][colName].length > 0) {
|
|
8324
|
+
if (taggingArray.data.mappings.mappings[j][colName] != null && taggingArray.data.mappings.mappings[j][colName].length > 0) {
|
|
8325
8325
|
multiArr[i].parentElement.setAttribute("part", "row-mapped");
|
|
8326
8326
|
}
|
|
8327
8327
|
}
|
package/src/sf-i-events.ts
CHANGED
|
@@ -12086,7 +12086,7 @@ export class SfIEvents extends LitElement {
|
|
|
12086
12086
|
if(equal) {
|
|
12087
12087
|
|
|
12088
12088
|
(multiArr[i] as SfIForm).preselectedValues = JSON.stringify(taggingArray.data.mappings.mappings[j][colName]);
|
|
12089
|
-
if(taggingArray.data.mappings.mappings[j][colName].length > 0) {
|
|
12089
|
+
if(taggingArray.data.mappings.mappings[j][colName] != null && taggingArray.data.mappings.mappings[j][colName].length > 0) {
|
|
12090
12090
|
((multiArr[i] as SfIForm).parentElement as HTMLTableCellElement).setAttribute("part", "row-mapped");
|
|
12091
12091
|
}
|
|
12092
12092
|
|