sf-i-events 1.0.293 → 1.0.294
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
|
@@ -7902,7 +7902,7 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
7902
7902
|
if (notifs.data.length > 0) {
|
|
7903
7903
|
if (this.flowRcmNotification === 0) {
|
|
7904
7904
|
html += '<div class="d-flex align-center">';
|
|
7905
|
-
html += '<span
|
|
7905
|
+
html += '<span class="material-symbols-outlined mr-10">notifications</span>';
|
|
7906
7906
|
html += '<div part="rcm-section-title" class="mr-10">Regulatory Alerts</div>';
|
|
7907
7907
|
html += ('<div part="notif-icon-badge" class="mr-20" >' + notifs.data.length + '</div>');
|
|
7908
7908
|
html += '<button id="button-expand" part="icon-button-small" class="material-symbols-outlined">keyboard_arrow_down</button>';
|
|
@@ -7910,7 +7910,7 @@ let SfIEvents = class SfIEvents extends LitElement {
|
|
|
7910
7910
|
}
|
|
7911
7911
|
else {
|
|
7912
7912
|
html += '<div class="w-100" part="rcm-section-notification">';
|
|
7913
|
-
html += '<span
|
|
7913
|
+
html += '<span class="material-symbols-outlined mr-10">notifications</span>';
|
|
7914
7914
|
html += '<div part="rcm-section-title" class="mb-10">Regulatory Alerts</div>';
|
|
7915
7915
|
html += '<div id="rcm-container-list" class="mb-10">';
|
|
7916
7916
|
for (var i = 0; i < notifs.data.length; i++) {
|