fix: The basic information nodes of advanced orchestration will add session variables when editing session variables (#3947)

v3.2
shaohuzhang1 2025-08-27 17:25:56 +08:00 committed by GitHub
parent a19bd1eef1
commit dbfdc73ce5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 3 deletions

View File

@ -115,7 +115,6 @@ const exportPDF = () => {
setTimeout(() => {
nextTick(() => {
html2Canvas(svgContainerRef.value, {
scale: 2,
logging: false,
})
.then((canvas) => {

View File

@ -86,8 +86,7 @@ function refreshFieldList(data: any, index: any) {
return
}
}
console.log(index)
if (index) {
if (index !== undefined) {
inputFieldList.value.splice(index, 1, data)
} else {
inputFieldList.value.push(data)