mirror of https://github.com/apache/cloudstack.git
ui: list static routes with listall=true (#5463)
This commit is contained in:
parent
b28dd81e8e
commit
f2315ec0e2
|
|
@ -118,7 +118,10 @@ export default {
|
|||
methods: {
|
||||
fetchData () {
|
||||
this.componentLoading = true
|
||||
api('listStaticRoutes', { gatewayid: this.resource.id }).then(json => {
|
||||
api('listStaticRoutes', {
|
||||
gatewayid: this.resource.id,
|
||||
listall: true
|
||||
}).then(json => {
|
||||
this.routes = json.liststaticroutesresponse.staticroute
|
||||
}).catch(error => {
|
||||
this.$notifyError(error)
|
||||
|
|
|
|||
Loading…
Reference in New Issue