master #25

Merged
m.lettere merged 22 commits from master into prod 2025-01-10 15:15:33 +01:00
1 changed files with 2 additions and 1 deletions
Showing only changes of commit 982778621c - Show all commits

View File

@ -965,7 +965,8 @@ class CCPExecutionHistory extends HTMLElement {
{
target : "li",
"in" : (e,d)=>{
return d.resources.map(l=>{
const resources = d.resources ? d.resurces : []
return resources.map(l=>{
return { href : this.#serviceurl + "/executions/" + d.id + "/" + l.path, path : l.path}
})
},