Tooltip on send button in forward dialog is redundant (#7594)
parent
09a1bc66a8
commit
cf0141467e
|
@ -98,9 +98,7 @@ const Entry: React.FC<IEntryProps> = ({ room, event, matrixClient: cli, onFinish
|
||||||
let icon;
|
let icon;
|
||||||
if (sendState === SendState.CanSend) {
|
if (sendState === SendState.CanSend) {
|
||||||
className = "mx_ForwardList_canSend";
|
className = "mx_ForwardList_canSend";
|
||||||
if (room.maySendMessage()) {
|
if (!room.maySendMessage()) {
|
||||||
title = _t("Send");
|
|
||||||
} else {
|
|
||||||
disabled = true;
|
disabled = true;
|
||||||
title = _t("You don't have permission to do this");
|
title = _t("You don't have permission to do this");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue