We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4d2a86 commit a0cff32Copy full SHA for a0cff32
group_manager/static/group_manager/js/group_manager.js
@@ -1984,7 +1984,11 @@ $(function () {
1984
// Re-enable group list entry.
1985
$('#group-list .group.delete-pending[data-name="' + Yoda.escapeQuotes(groupName) + '"]').removeClass('delete-pending disabled').attr('title', '')
1986
1987
- if ('message' in result) { window.alert(result.message) } else {
+ if ('message' in result) {
1988
+ window.alert(result.message)
1989
+ } else if ('status_info' in result) {
1990
+ window.alert(result.status_info)
1991
+ } else {
1992
window.alert(
1993
'Error: Could not remove the selected group due to an internal error.\n' +
1994
'Please contact a Yoda administrator'
0 commit comments