Style fix
This commit is contained in:
parent
f6aa9a7ea4
commit
4fc311da90
1 changed files with 1 additions and 3 deletions
|
@ -120,9 +120,7 @@ module.exports = React.createClass({
|
||||||
if (event.target.checked) {
|
if (event.target.checked) {
|
||||||
var data = {}
|
var data = {}
|
||||||
if (this.props.brand) {
|
if (this.props.brand) {
|
||||||
data['brand'] = this.props.brand;
|
data['brand'] = this.props.brand || 'Vector';
|
||||||
} else if (this.props.brand === undefined) {
|
|
||||||
data['brand'] = 'Vector';
|
|
||||||
}
|
}
|
||||||
emailPusherPromise = UserSettingsStore.addEmailPusher(address, data);
|
emailPusherPromise = UserSettingsStore.addEmailPusher(address, data);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue