Skip to content

Commit

Permalink
fixed bug #7
Browse files Browse the repository at this point in the history
  • Loading branch information
dreamans committed Jan 15, 2019
1 parent 688bdca commit 2026310
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion web/src/views/project/ProjectUpdateComponent.js
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,11 @@ const UpdateProject = {
},
getDataGroupList() {
getGroupListApi({offset: 0, limit: 9999}).then(res => {
this.serverGroupList = res.list
if (res.list) {
this.serverGroupList = res.list
} else {
this.serverGroupList = []
}
})
},
},
Expand Down

0 comments on commit 2026310

Please sign in to comment.