a-compose/sendhelp wanted
Repository metrics
- Stars
- (1,348 stars)
- PR merge metrics
- (PR metrics pending)
Description
From src/message/messageActionSheet.js:
if (
message.sender_id === ownUser.user_id
// Our "edit message" UI only works in certain kinds of narrows.
&& (isStreamOrTopicNarrow(narrow) || isPmNarrow(narrow))
) {
buttons.push(editMessage);
}
It would be nice if editing worked in all types of narrows.
I think the easiest solution here is to just narrow to the relevant topic or PM narrow and then show the edit box, but we could also just fix the edit box so it works everywhere.