diff --git a/src/components/views/settings/Notifications.js b/src/components/views/settings/Notifications.js index f6536aa0..72dc4e94 100644 --- a/src/components/views/settings/Notifications.js +++ b/src/components/views/settings/Notifications.js @@ -581,7 +581,7 @@ module.exports = React.createClass({ renderNotifRulesTableRow: function(title, className, pushRuleVectorState) { return ( - + {title} @@ -692,17 +692,21 @@ module.exports = React.createClass({ // and this wouldn't be hard to add. var rows = []; for (var i = 0; i < this.state.pushers.length; ++i) { - rows.push( + rows.push( {this.state.pushers[i].app_display_name} {this.state.pushers[i].device_display_name} ); } devicesSection = ( - - - - - {rows} + + + + + + + + {rows} +
ApplicationDevice
ApplicationDevice
); }