summaryrefslogtreecommitdiffstats
path: root/web/react/components/activity_log_modal.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'web/react/components/activity_log_modal.jsx')
-rw-r--r--web/react/components/activity_log_modal.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/react/components/activity_log_modal.jsx b/web/react/components/activity_log_modal.jsx
index f8a2af571..1a0c9c6d5 100644
--- a/web/react/components/activity_log_modal.jsx
+++ b/web/react/components/activity_log_modal.jsx
@@ -199,7 +199,7 @@ export default class ActivityLogModal extends React.Component {
className='activity-log__table'
>
<div className='activity-log__report'>
- <div className='report__platform'><i className={devicePicture} />{devicePlatform}</div>
+ <div className='report__platform'><i className={devicePicture}/>{devicePlatform}</div>
<div className='report__info'>
<div>
<FormattedMessage
@@ -231,7 +231,7 @@ export default class ActivityLogModal extends React.Component {
let content;
if (this.state.sessions.loading) {
- content = <LoadingScreen />;
+ content = <LoadingScreen/>;
} else {
content = <form role='form'>{activityList}</form>;
}