Render space pills with square corners to match new avatar (#11632)
This commit is contained in:
parent
f60ba1c29d
commit
54ec7e696d
2 changed files with 7 additions and 1 deletions
|
@ -103,7 +103,7 @@ export const Pill: React.FC<PillProps> = ({ type: propType, url, inMessage, room
|
|||
const classes = classNames("mx_Pill", {
|
||||
mx_AtRoomPill: type === PillType.AtRoomMention,
|
||||
mx_RoomPill: type === PillType.RoomMention,
|
||||
mx_SpacePill: type === "space",
|
||||
mx_SpacePill: type === "space" || targetRoom?.isSpaceRoom(),
|
||||
mx_UserPill: type === PillType.UserMention,
|
||||
mx_UserPill_me: resourceId === MatrixClientPeg.safeGet().getUserId(),
|
||||
mx_EventPill: type === PillType.EventInOtherRoom || type === PillType.EventInSameRoom,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue