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(() => {
|
setTimeout(() => {
|
||||||
nextTick(() => {
|
nextTick(() => {
|
||||||
html2Canvas(svgContainerRef.value, {
|
html2Canvas(svgContainerRef.value, {
|
||||||
scale: 2,
|
|
||||||
logging: false,
|
logging: false,
|
||||||
})
|
})
|
||||||
.then((canvas) => {
|
.then((canvas) => {
|
||||||
|
|
|
||||||
|
|
@ -86,8 +86,7 @@ function refreshFieldList(data: any, index: any) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
console.log(index)
|
if (index !== undefined) {
|
||||||
if (index) {
|
|
||||||
inputFieldList.value.splice(index, 1, data)
|
inputFieldList.value.splice(index, 1, data)
|
||||||
} else {
|
} else {
|
||||||
inputFieldList.value.push(data)
|
inputFieldList.value.push(data)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue