mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-09-28 23:44:38 +08:00
fix(messages): Field label was always "To"
This commit is contained in:
parent
ca31ee10bd
commit
a6d8783dae
2 changed files with 2 additions and 1 deletions
|
@ -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: </div>
|
<div className={"participant-label #{name}-label"}>{name}: </div>
|
||||||
else
|
else
|
||||||
undefined
|
undefined
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue