From fbbfebe09a9916ce8b149d98f3d6518945d6826a Mon Sep 17 00:00:00 2001 From: llj Date: Mon, 13 Nov 2017 14:28:21 +0800 Subject: [PATCH] [group] fix --- static/scripts/app/views/group-settings.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/scripts/app/views/group-settings.js b/static/scripts/app/views/group-settings.js index b2b91ae6cb..2371c27e8b 100644 --- a/static/scripts/app/views/group-settings.js +++ b/static/scripts/app/views/group-settings.js @@ -177,8 +177,8 @@ define([ data: { 'owner': email }, - success: function() { - // after the transfer, the former owner becomes a common admin of the group. + success: function(data) { + _this.groupView.group = data; Common.feedback(gettext("Successfully transferred the group. You are now a normal member of the group."), 'success'); $.modal.close(); },