Skip to content

Commit f2315ec

Browse files
ui: list static routes with listall=true (apache#5463)
1 parent b28dd81 commit f2315ec

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ui/src/views/network/StaticRoutesTab.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,10 @@ export default {
118118
methods: {
119119
fetchData () {
120120
this.componentLoading = true
121-
api('listStaticRoutes', { gatewayid: this.resource.id }).then(json => {
121+
api('listStaticRoutes', {
122+
gatewayid: this.resource.id,
123+
listall: true
124+
}).then(json => {
122125
this.routes = json.liststaticroutesresponse.staticroute
123126
}).catch(error => {
124127
this.$notifyError(error)

0 commit comments

Comments
 (0)