Get rid of jszip and replace it with a custom library
This commit is contained in:
@@ -76,7 +76,8 @@ const EventListSummary: React.FC<IProps> = ({
|
||||
{ children }
|
||||
</React.Fragment>;
|
||||
} else {
|
||||
const avatars = summaryMembers.map((m) => <MemberAvatar key={m.userId} member={m} width={14} height={14} />);
|
||||
const avatars = summaryMembers.map((m, idx) =>
|
||||
<MemberAvatar key={m.userId + idx} member={m} width={14} height={14} />);
|
||||
body = (
|
||||
<div className="mx_EventTile_line">
|
||||
<div className="mx_EventTile_info">
|
||||
|
||||
Reference in New Issue
Block a user