sf-i-events 1.0.591 → 1.0.592
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 +2 -2
- package/sf-i-events.js.map +1 -1
- package/src/sf-i-events.ts +2 -2
package/package.json
CHANGED
package/sf-i-events.js
CHANGED
|
@@ -7427,11 +7427,11 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
7427
7427
|
//console.log('isArray', sourceCols[l], Array.isArray(JSON.parse(sourceArray.data.mappings.mappings[i].data)[j]));
|
|
7428
7428
|
if (Array.isArray(JSON.parse(sourceArray.data.mappings.mappings[i].data)[j])) {
|
|
7429
7429
|
for (var k = 0; k < JSON.parse(sourceArray.data.mappings.mappings[i].data)[j].length; k++) {
|
|
7430
|
-
html += ('<sf-i-elastic-text text="' + JSON.parse(sourceArray.data.mappings.mappings[i].data)[j][k] + '" minLength="100" lineSize="
|
|
7430
|
+
html += ('<sf-i-elastic-text text="' + JSON.parse(sourceArray.data.mappings.mappings[i].data)[j][k] + '" minLength="100" lineSize="4"></sf-i-elastic-text>');
|
|
7431
7431
|
}
|
|
7432
7432
|
}
|
|
7433
7433
|
else {
|
|
7434
|
-
html += ('<sf-i-elastic-text text="' + JSON.parse(sourceArray.data.mappings.mappings[i].data)[j] + '" minLength="100" lineSize="
|
|
7434
|
+
html += ('<sf-i-elastic-text text="' + JSON.parse(sourceArray.data.mappings.mappings[i].data)[j] + '" minLength="100" lineSize="4"></sf-i-elastic-text>');
|
|
7435
7435
|
}
|
|
7436
7436
|
html += '</div>';
|
|
7437
7437
|
html += '</td>';
|