summaryrefslogtreecommitdiffstats
path: root/webapp/components/activity_log_modal
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/activity_log_modal')
-rw-r--r--webapp/components/activity_log_modal/activity_log_modal.jsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/webapp/components/activity_log_modal/activity_log_modal.jsx b/webapp/components/activity_log_modal/activity_log_modal.jsx
index 76f7bbf77..7f16603f4 100644
--- a/webapp/components/activity_log_modal/activity_log_modal.jsx
+++ b/webapp/components/activity_log_modal/activity_log_modal.jsx
@@ -52,7 +52,9 @@ export default class ActivityLogModal extends React.Component {
setTimeout(() => {
modalContent.removeClass('animation--highlight');
}, 1500);
- this.props.actions.revokeSession(UserStore.getCurrentId(), altId);
+ this.props.actions.revokeSession(UserStore.getCurrentId(), altId).then(() => {
+ this.props.actions.getSessions(UserStore.getCurrentId());
+ });
}
onShow() {