Skip to content

Commit 16f07db

Browse files
author
Dushyant Bhalgami
committed
fixed issue for groupMembers
1 parent a2f8b8c commit 16f07db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/groupmembers/groupmembers.service.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ angular.module('supportAdminApp').factory('GroupMemberService', [
2525
})
2626
.then(function(response) {
2727
if (response && response.data) {
28-
return response.data.result || [];
28+
return response.data || [];
2929
} else {
3030
return $q.reject({
3131
error: 'Cannot find data in response'

0 commit comments

Comments
 (0)