Hide status message on edit.

When editing a /me, the status message element should be hidden.
This commit is contained in:
Brock Whittaker 2017-04-20 14:31:37 -07:00
parent 323ff6edca
commit 83d51b2bdb
1 changed files with 1 additions and 1 deletions

View File

@ -474,7 +474,7 @@ exports.MessageList.prototype = {
show_edit_message: function MessageList_show_edit_message(row, edit_obj) {
row.find(".message_edit_form").empty().append(edit_obj.form);
row.find(".message_content").hide();
row.find(".message_content, .status-message").hide();
row.find(".message_edit").show();
row.find(".message_edit_content").autosize();
},