this.hideField(Fields.Bcc)}
className="composer-participant-field bcc-field"
participants={{to, cc, bcc}}
draft={this.props.draft}
session={this.props.session}
/>
)
}
if (this.state.enabledFields.includes(Fields.From)) {
fields.push(
)
}
return fields;
}
render() {
return (
{this._renderParticipants()}
{this._renderSubject()}
)
}
}