diff --git a/framework/core/js/forum/src/components/Notification.js b/framework/core/js/forum/src/components/Notification.js index a130e5870..52b61829c 100644 --- a/framework/core/js/forum/src/components/Notification.js +++ b/framework/core/js/forum/src/components/Notification.js @@ -19,18 +19,21 @@ export default class Notification extends Component { const href = this.href(); return ( -
- - {avatar(notification.sender())} - {icon(this.icon(), {className: 'Notification-icon'})} - {this.content()} - {humanTime(notification.time())} -
- {this.excerpt()} -
-
-
+ + {avatar(notification.sender())} + {icon(this.icon(), {className: 'Notification-icon'})} + {this.content()} + {humanTime(notification.time())} +
+ {this.excerpt()} +
+
); }