updated calls
This commit is contained in:
parent
0a1bd35143
commit
42b506ecf6
|
@ -25,7 +25,7 @@ class CCPMethodEditorController extends HTMLElement{
|
|||
runtime : {
|
||||
id : "runtime",
|
||||
title : "Runtime",
|
||||
description : "The image of the runtime to use for method execution. This depends on the infrastructure specific protocol for interacting with registries."
|
||||
description : "The image of the runtime to use for method execution. This depends on the infrastructure specific protocol for interacting with registries.",
|
||||
minOccurs : 1,
|
||||
maxOccurs : 1,
|
||||
schema : {
|
||||
|
@ -832,7 +832,7 @@ class CCPMethodEditorController extends HTMLElement{
|
|||
|
||||
reRenderInfrastructures(){
|
||||
this.#rootdoc.querySelector("select[name=infrastructure-input]").innerHTML = this.renderInfrastructureOptions()
|
||||
this.#rootdoc.querySelector("div[name=infrastructure-list]").innerHTML = this.renderInfrastructure()
|
||||
this.#rootdoc.querySelector("div[name=infrastructure-list]").innerHTML = this.renderInfrastructures()
|
||||
}
|
||||
|
||||
renderInfrastructureOptions(){
|
||||
|
@ -850,7 +850,7 @@ class CCPMethodEditorController extends HTMLElement{
|
|||
`
|
||||
}
|
||||
|
||||
renderRuntimes(){
|
||||
renderInfrastructures(){
|
||||
return this.#current.links.filter(l=>l.rel === "compatibleWith").map((l, i)=>{
|
||||
return `
|
||||
<div class="ccp-option badge ccp-keyword">
|
||||
|
|
Loading…
Reference in New Issue