mirror of
https://git.mirrors.martin98.com/https://github.com/infiniflow/ragflow.git
synced 2025-07-16 21:21:49 +08:00
Fix: none item while concating df. (#6176)
### What problem does this PR solve? #6065 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
parent
503e5829bb
commit
d0eda83697
@ -235,7 +235,7 @@ class Canvas:
|
|||||||
pid = self.components[cid]["parent_id"]
|
pid = self.components[cid]["parent_id"]
|
||||||
o, _ = self.components[cid]["obj"].output(allow_partial=False)
|
o, _ = self.components[cid]["obj"].output(allow_partial=False)
|
||||||
oo, _ = self.components[pid]["obj"].output(allow_partial=False)
|
oo, _ = self.components[pid]["obj"].output(allow_partial=False)
|
||||||
self.components[pid]["obj"].set(pd.concat([oo, o], ignore_index=True))
|
self.components[pid]["obj"].set(pd.concat([oo, o], ignore_index=True).dropna())
|
||||||
downstream = [pid]
|
downstream = [pid]
|
||||||
|
|
||||||
for m in prepare2run(downstream):
|
for m in prepare2run(downstream):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user