mirror of https://github.com/apache/cloudstack.git
compute: fix null exception while listing networks
Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
This commit is contained in:
parent
475cc04dd7
commit
3bc553695e
|
|
@ -515,9 +515,9 @@ export default {
|
|||
options: {
|
||||
zoneid: _.get(this.zone, 'id'),
|
||||
canusefordeploy: true,
|
||||
projectid: store.getters.project.id,
|
||||
domainid: store.getters.project.id ? null : store.getters.userInfo.domainid,
|
||||
account: store.getters.project.id ? null : store.getters.userInfo.account,
|
||||
projectid: store.getters.project ? store.getters.project.id : null,
|
||||
domainid: store.getters.project && store.getters.project.id ? null : store.getters.userInfo.domainid,
|
||||
account: store.getters.project && store.getters.project.id ? null : store.getters.userInfo.account,
|
||||
page: 1,
|
||||
pageSize: 10,
|
||||
keyword: undefined
|
||||
|
|
|
|||
Loading…
Reference in New Issue