mirror of https://github.com/zulip/zulip.git
Fix historical messages not getting their color updated on a color change.
Perhaps we should be checking based on an ID rather than the actual text, but this fixes the proximal issue. (imported from commit b125415c3a8356255b64c8e22733532491ea0065)
This commit is contained in:
parent
d43c01c911
commit
7e3035b2d9
|
@ -46,7 +46,7 @@ function update_table_stream_color(table, stream_name, color) {
|
|||
|
||||
var stream_labels = $("#floating_recipient_bar").add(table).find(".stream_label");
|
||||
_.each(stream_labels, function (label) {
|
||||
if ($(label).text() === stream_name) {
|
||||
if ($.trim($(label).text()) === stream_name) {
|
||||
fixup($(label).parent("td").parent("tr").prev("tr")
|
||||
.nextUntil(".bookend_tr")
|
||||
.children(".messagebox_colorblock,.message_header_colorblock"));
|
||||
|
|
Loading…
Reference in New Issue