Skip to content

Commit

Permalink
Fix details
Browse files Browse the repository at this point in the history
  • Loading branch information
oeway committed Mar 4, 2024
1 parent 6c37075 commit fe79634
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bioimageio_chatbot/static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1041,7 +1041,7 @@ <h3 class="text-center">Welcome to BioImage.IO Chatbot</h3>
const steps = response.steps;
let message = response.text;
if(steps && steps.length > 0){
message = message + "\n\n<br><details> <summary>🔍More Details</summary>\n\n"
message = message + "\n\n<details> <summary>🔍More Details</summary>\n\n"
for(let step of steps){
message = message + `<div class="step">${step.name}</div>\n\n\`\`\`\n\n${JSON.stringify(step.details, null, 2)}\n\n\`\`\`\n\n`
}
Expand Down

0 comments on commit fe79634

Please sign in to comment.