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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "sf-i-events",
3
3
  "private": false,
4
- "version": "1.0.712",
4
+ "version": "1.0.713",
5
5
  "description": "Superflows Navigation Component",
6
6
  "main": "sf-i-events.js",
7
7
  "module": "sf-i-events.js",
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
  }
@@ -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