@appcorp/kismaa-web-ui 0.2.73 → 0.2.74
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.
|
@@ -121,7 +121,7 @@ var LoggedInUserAvatar = function (_a) {
|
|
|
121
121
|
unReadNotifications.length > 0 &&
|
|
122
122
|
unReadNotifications.map(function (_a) {
|
|
123
123
|
var message = _a.message, time = _a.time, id = _a.id;
|
|
124
|
-
return (react_2.default.createElement(notification_item_1.NotificationItem, { avatarClassName: avatarClassName,
|
|
124
|
+
return (react_2.default.createElement(notification_item_1.NotificationItem, { avatarClassName: avatarClassName, key: id, message: message, time: time }));
|
|
125
125
|
})),
|
|
126
126
|
react_2.default.createElement("div", { className: "divider-y-gray-300 flex w-full flex-col items-center justify-center" },
|
|
127
127
|
react_2.default.createElement("div", { className: "w-full" }, readNotifications && readNotifications.length > 0 && (react_2.default.createElement(vista_vertical_divider_v4_1.VistaVerticalDividerV4, { label: "Read Notifications" }))),
|
|
@@ -129,8 +129,7 @@ var LoggedInUserAvatar = function (_a) {
|
|
|
129
129
|
readNotifications.length > 0 &&
|
|
130
130
|
readNotifications.map(function (_a) {
|
|
131
131
|
var message = _a.message, time = _a.time, id = _a.id;
|
|
132
|
-
return (react_2.default.createElement(
|
|
133
|
-
react_2.default.createElement(notification_item_1.NotificationItem, { avatarClassName: avatarClassName, id: id, message: message, time: time })));
|
|
132
|
+
return (react_2.default.createElement(notification_item_1.NotificationItem, { avatarClassName: avatarClassName, key: id, message: message, time: time }));
|
|
134
133
|
}))))),
|
|
135
134
|
react_2.default.createElement(react_1.Popover, { className: "relative" },
|
|
136
135
|
react_2.default.createElement("div", { className: "flex flex-col items-end justify-start" },
|