You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-01 13:11:10 +03:00
fix ugly warning from nesting div tags in p tags (#8094)
might make negligible spacing changes to text buttons in MemberInfo, but not enough that i could spot them.
This commit is contained in:
@@ -1416,7 +1416,7 @@ const BasicUserInfo: React.FC<{
|
|||||||
|
|
||||||
let editDevices;
|
let editDevices;
|
||||||
if (member.userId == cli.getUserId()) {
|
if (member.userId == cli.getUserId()) {
|
||||||
editDevices = (<p>
|
editDevices = (<div>
|
||||||
<AccessibleButton
|
<AccessibleButton
|
||||||
className="mx_UserInfo_field"
|
className="mx_UserInfo_field"
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
@@ -1428,7 +1428,7 @@ const BasicUserInfo: React.FC<{
|
|||||||
>
|
>
|
||||||
{ _t("Edit devices") }
|
{ _t("Edit devices") }
|
||||||
</AccessibleButton>
|
</AccessibleButton>
|
||||||
</p>);
|
</div>);
|
||||||
}
|
}
|
||||||
|
|
||||||
const securitySection = (
|
const securitySection = (
|
||||||
|
|||||||
Reference in New Issue
Block a user