fix(messages): Field label was always "To"

This commit is contained in:
Ben Gotow 2016-02-05 18:42:18 -08:00
parent ca31ee10bd
commit a6d8783dae
2 changed files with 2 additions and 1 deletions

View file

@ -81,7 +81,7 @@ class MessageParticipants extends React.Component
<div className="participant-type" key={"participant-type-#{name}"}> <div className="participant-type" key={"participant-type-#{name}"}>
{ {
if includeLabel if includeLabel
<div className={"participant-label #{name}-label"}>To:&nbsp;</div> <div className={"participant-label #{name}-label"}>{name}:&nbsp;</div>
else else
undefined undefined
} }

View file

@ -569,6 +569,7 @@ body.platform-win32 {
.from-label, .to-label, .cc-label, .bcc-label { .from-label, .to-label, .cc-label, .bcc-label {
float: left; float: left;
display: block; display: block;
text-transform: capitalize;
font-weight: @font-weight-normal; font-weight: @font-weight-normal;
margin-left: 0; margin-left: 0;
} }