Issue:#22145 #37529
Anjali-yadav513
started this conversation in
Show and tell
Issue:#22145
#37529
Replies: 1 comment
-
|
Please kindly assign me this issue so I start working on it |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi! I'm Anjali Yadav, a new contributor interested in working on this issue.
I've analyzed the problem - the member list appears in random orders when a room is opened.
My idea to solve this is:
Locate where the member list is fetched and rendered(likely in app/ui/client/views/roomMembers/).
Apply a sorting function before rendering, for example:
const sortMembers = [...members].sort((a, b) =>
a.uername.localCompare(b.username));
Display sortMembers instead of the unsorted list so the members appear alphabetically.
If this approach looks fine , could you please assign me this issue?
I'll start setting up the project locally and submit a PR soon.
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions