mirror of https://github.com/vector-im/riot-web
Fix multi-invite error dialog messaging
Fixes https://github.com/vector-im/riot-web/issues/11515pull/21833/head
parent
fbba55ab05
commit
d6821ecb99
|
@ -202,11 +202,14 @@ function _showAnyInviteErrors(addrs, room, inviter) {
|
|||
}
|
||||
}
|
||||
|
||||
// React 16 doesn't let us use `errorList.join(<br />)` anymore, so this is our solution
|
||||
let description = <div>{errorList.map(e => <div key={e}>{e}</div>)}</div>;
|
||||
|
||||
if (errorList.length > 0) {
|
||||
const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
|
||||
Modal.createTrackedDialog('Failed to invite the following users to the room', '', ErrorDialog, {
|
||||
title: _t("Failed to invite the following users to the %(roomName)s room:", {roomName: room.name}),
|
||||
description: errorList.join(<br />),
|
||||
description,
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue