From 50a9cb8d278a0fa27e31f46f886b4f16c3b6c347 Mon Sep 17 00:00:00 2001 From: martin legrand Date: Fri, 16 May 2025 12:41:56 +0200 Subject: [PATCH] fix : frontend color --- frontend/agentic-seek-front/src/App.css | 4 ++++ frontend/agentic-seek-front/src/App.js | 8 +++++--- 2 files changed, 9 insertions(+), 3 deletions(-) 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

+ )} )) ) : (