From a99e2d9448f12ebfb7e824fd34470b52206fd7a8 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Wed, 21 Nov 2018 17:11:56 +0100 Subject: [PATCH] Reload user table when setting an email to verified --- .../app/shared/moderation/user-moderation-dropdown.component.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/src/app/shared/moderation/user-moderation-dropdown.component.ts b/client/src/app/shared/moderation/user-moderation-dropdown.component.ts index 47967f8e5..d391246e0 100644 --- a/client/src/app/shared/moderation/user-moderation-dropdown.component.ts +++ b/client/src/app/shared/moderation/user-moderation-dropdown.component.ts @@ -109,6 +109,8 @@ export class UserModerationDropdownComponent implements OnChanges { this.i18n('Success'), this.i18n('User {{username}} email set as verified', { username: user.username }) ) + + this.userChanged.emit() }, err => this.notificationsService.error(this.i18n('Error'), err.message)