sf-i-events 1.0.845 → 1.0.846
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
|
@@ -9844,7 +9844,7 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
9844
9844
|
html += '<div class="accordian-container m-20 pb-20" part="accordian-container">';
|
|
9845
9845
|
html += '<div part="detail-summary">';
|
|
9846
9846
|
html += ('<div part="detail-summary-title" class="pl-20 pr-20"><h1>' + event['obligationtitle'] + '</h1></div>');
|
|
9847
|
-
html += ('<div part="detail-summary-subtitle" class="pl-20 pr-20"><h3>' + event['obligation'] + '</h3></div>');
|
|
9847
|
+
html += ('<div part="detail-summary-subtitle" class="pl-20 pr-20"><h3>' + event['obligation'].replace(/\n/g, '<br />') + '</h3></div>');
|
|
9848
9848
|
html += ('<div part="detail-summary-content" class="pl-20 pr-20">' + ('<sf-i-elastic-text text="' + (event['internalcontrols'] + "").replace(/"/g, "").replace(/\n/g, '<br />') + '" minLength="80"></sf-i-elastic-text>') + '</div>');
|
|
9849
9849
|
html += '</div>';
|
|
9850
9850
|
html += '<br />';
|
package/src/sf-i-events.ts
CHANGED
|
@@ -13477,7 +13477,7 @@ export class SfIEvents extends LitElement {
|
|
|
13477
13477
|
|
|
13478
13478
|
html += '<div part="detail-summary">';
|
|
13479
13479
|
html += ('<div part="detail-summary-title" class="pl-20 pr-20"><h1>'+event['obligationtitle']+'</h1></div>');
|
|
13480
|
-
html += ('<div part="detail-summary-subtitle" class="pl-20 pr-20"><h3>'+event['obligation']+'</h3></div>');
|
|
13480
|
+
html += ('<div part="detail-summary-subtitle" class="pl-20 pr-20"><h3>'+event['obligation'].replace(/\n/g,'<br />')+'</h3></div>');
|
|
13481
13481
|
html += ('<div part="detail-summary-content" class="pl-20 pr-20">'+('<sf-i-elastic-text text="'+(event['internalcontrols'] + "").replace(/"/g, "").replace(/\n/g,'<br />')+'" minLength="80"></sf-i-elastic-text>')+'</div>');
|
|
13482
13482
|
html += '</div>';
|
|
13483
13483
|
|