Skip to content

Commit 2f8a015

Browse files
committed
fix: Embedded application displays incomplete data
1 parent 0f8fb16 commit 2f8a015

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/application/flow/step_node/application_node/impl/base_application_node.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ def get_answer_list(self) -> List[Answer] | None:
136136
if self.answer_text is None:
137137
return None
138138
application_node_dict = self.context.get('application_node_dict')
139-
if application_node_dict is None:
139+
if application_node_dict is None or len(application_node_dict) == 0:
140140
return [
141141
Answer(self.answer_text, self.view_type, self.runtime_node_id, self.workflow_params['chat_record_id'],
142142
self.context.get('child_node'))]

0 commit comments

Comments
 (0)