Make error message consistent with menu title

pull/21833/head
James Salter 2021-07-16 09:24:14 +01:00
parent 329f1c9d6a
commit 685b59235d
1 changed files with 3 additions and 3 deletions

View File

@ -1202,9 +1202,9 @@ export default class MatrixChat extends React.PureComponent<IProps, IState> {
const roomLink = makeRoomPermalink(roomId); const roomLink = makeRoomPermalink(roomId);
const success = await copyPlaintext(roomLink); const success = await copyPlaintext(roomLink);
if (!success) { if (!success) {
Modal.createTrackedDialog("Unable to copy room", "", ErrorDialog, { Modal.createTrackedDialog("Unable to copy room link", "", ErrorDialog, {
title: _t("Unable to copy room"), title: _t("Unable to copy room link"),
description: _t("Unable to copy the room to the clipboard."), description: _t("Unable to copy a link to the room to the clipboard."),
}); });
} }
} }