Skip to content

Commit 574e27a

Browse files
committed
Merge remote-tracking branch 'origin' into feat/story-telling
2 parents 6a1e7a1 + 28bddab commit 574e27a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

playground/src/common/graph.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -487,8 +487,7 @@ class GraphEditor {
487487

488488
protocols.forEach((protocol) => {
489489
if (connection[protocol]) {
490-
connection[protocol] = connection[protocol]?.filter(
491-
(item) => !item.dest.some((dest) => dest.extension === node.name),
490+
connection[protocol].forEach((item) => item.dest = item.dest.filter(d => d.extension !== node.name),
492491
)
493492
}
494493
})

playground/src/components/Chat/ChatCfgPropertySelect.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,7 @@ const convertToType = (value: any, type: string) => {
237237
case "int32":
238238
return parseInt(value, 10)
239239
case "float64":
240+
case "float32":
240241
return parseFloat(value)
241242
case "bool":
242243
return value === true || value === "true"

0 commit comments

Comments
 (0)