diff --git a/frontend/agentic-seek-front/src/App.css b/frontend/agentic-seek-front/src/App.css index 1c051ab..d9ac01c 100644 --- a/frontend/agentic-seek-front/src/App.css +++ b/frontend/agentic-seek-front/src/App.css @@ -366,6 +366,10 @@ body { color: #28a745; /* success */ } +.block-failure { + color: #d21b0b; /* success */ +} + .block pre { background-color: #1a202c; /* Darker than darkCard */ padding: 12px; diff --git a/frontend/agentic-seek-front/src/App.js b/frontend/agentic-seek-front/src/App.js index 7da1a53..7521a70 100644 --- a/frontend/agentic-seek-front/src/App.js +++ b/frontend/agentic-seek-front/src/App.js @@ -242,9 +242,11 @@ function App() {
Tool: {block.tool_type}
{block.block}
Feedback: {block.feedback}
-- Success: {block.success ? 'Yes' : 'No'} -
+ {block.success ? ( +Success
+ ) : ( +Failure
+ )} )) ) : (