fix(reaction_station): 为步骤参数添加Value字段传个BY后端

This commit is contained in:
ZiWei
2025-10-20 10:40:51 +08:00
parent 9f7c3f02f9
commit 2c130e7f37

View File

@@ -605,7 +605,8 @@ class BioyondReactionStation(BioyondWorkstation):
total_params += 1 total_params += 1
step_parameters[step_id][action_name].append({ step_parameters[step_id][action_name].append({
"Key": param_key, "Key": param_key,
"DisplayValue": param_value "DisplayValue": param_value,
"Value": param_value
}) })
successful_params += 1 successful_params += 1
# print(f" ✓ {param_key} = {param_value}") # print(f" ✓ {param_key} = {param_value}")