We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9be3107 commit 199bfd4Copy full SHA for 199bfd4
1 file changed
ui/src/views/infra/network/ServiceProvidersTab.vue
@@ -1177,10 +1177,12 @@ export default {
1177
// Load NetworkOrchestrator extensions registered to this physical network
1178
getAPI('listExtensions', {
1179
type: 'NetworkOrchestrator',
1180
- resourceid: this.resource.id,
1181
- resourcetype: 'PhysicalNetwork'
+ details: 'resource'
1182
}).then(json => {
1183
- this.registeredExtensions = (json.listextensionsresponse && json.listextensionsresponse.extension) || []
+ const exts = (json?.listextensionsresponse?.extension) || []
+ this.registeredExtensions = exts.filter(ext =>
1184
+ (ext.resources || []).some(r => r.type === 'PhysicalNetwork' && r.id === this.resource.id)
1185
+ )
1186
}).catch(() => {
1187
this.registeredExtensions = []
1188
})
0 commit comments