Skip to content

Commit dbfdc73

Browse files
authored
fix: The basic information nodes of advanced orchestration will add session variables when editing session variables (#3947)
1 parent a19bd1e commit dbfdc73

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

ui/src/components/pdf-export/index.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,6 @@ const exportPDF = () => {
115115
setTimeout(() => {
116116
nextTick(() => {
117117
html2Canvas(svgContainerRef.value, {
118-
scale: 2,
119118
logging: false,
120119
})
121120
.then((canvas) => {

ui/src/workflow/nodes/base-node/component/ChatFieldTable.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@ function refreshFieldList(data: any, index: any) {
8686
return
8787
}
8888
}
89-
console.log(index)
90-
if (index) {
89+
if (index !== undefined) {
9190
inputFieldList.value.splice(index, 1, data)
9291
} else {
9392
inputFieldList.value.push(data)

0 commit comments

Comments
 (0)