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}"}>
{
if includeLabel
<div className={"participant-label #{name}-label"}>To:&nbsp;</div>
<div className={"participant-label #{name}-label"}>{name}:&nbsp;</div>
else
undefined
}

View file

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