mirror of https://github.com/apache/cloudstack.git
UI: fix security group lists in project view (#7164)
This commit is contained in:
parent
66f351543a
commit
147ea06af3
|
|
@ -140,8 +140,9 @@ export default {
|
|||
methods: {
|
||||
fetchData () {
|
||||
const params = {
|
||||
domainid: this.$store.getters.userInfo.domainid,
|
||||
account: this.$store.getters.userInfo.account,
|
||||
projectid: this.$store.getters.project ? this.$store.getters.project.id : null,
|
||||
domainid: this.$store.getters.project && this.$store.getters.project.id ? null : this.$store.getters.userInfo.domainid,
|
||||
account: this.$store.getters.project && this.$store.getters.project.id ? null : this.$store.getters.userInfo.account,
|
||||
page: this.page,
|
||||
pageSize: this.pageSize
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue