Skip to content

Commit fe6645e

Browse files
feature updates ig
1 parent c06c4b3 commit fe6645e

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

src/components/rightSidebar/RightSidebar.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export default function RightSidebar(props) {
2020
if (props?.type && props?.type === "fill") {
2121
return MemberList;
2222
}
23-
if (props?.type && props?.type === "chat") {
23+
if (props?.type && props?.type === "chat" && props.state.thirdBarContext == "members") {
2424
return MemberProfile;
2525
}
2626
return thirdBarViews[props.state.thirdBarContext] || MemberList

src/styles/messagelist.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@
6969
gap: .3em;
7070
align-items: center;
7171
color: var(--fg-dim);
72+
user-select: text;
7273
}
7374

7475
& .message_content {
@@ -78,11 +79,13 @@
7879

7980
& .time {
8081
opacity: .5;
82+
user-select: text;
8183
font-family: monospace;
8284
font-size: 9px;
8385
}
8486

8587
& .reply_preview {
88+
user-select: text;
8689
margin: .3em 0;
8790
font-size: small;
8891
margin-left: 53px;

0 commit comments

Comments
 (0)