fix: The basic information nodes of advanced orchestration will add session variables when editing session variables (#3947)
parent
a19bd1eef1
commit
dbfdc73ce5
|
|
@ -115,7 +115,6 @@ const exportPDF = () => {
|
|||
setTimeout(() => {
|
||||
nextTick(() => {
|
||||
html2Canvas(svgContainerRef.value, {
|
||||
scale: 2,
|
||||
logging: false,
|
||||
})
|
||||
.then((canvas) => {
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue