Make error message consistent with menu title
parent
329f1c9d6a
commit
685b59235d
|
@ -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."),
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue