From 26f8336622ff4908ff69972d35fef426f2d50c09 Mon Sep 17 00:00:00 2001 From: Rohit Rajan Date: Wed, 22 Oct 2025 16:07:28 +0530 Subject: [PATCH 1/2] feat: add no action selected message --- src/components/run/InterpretationLog.tsx | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/components/run/InterpretationLog.tsx b/src/components/run/InterpretationLog.tsx index 6cc7404b..74c46f4e 100644 --- a/src/components/run/InterpretationLog.tsx +++ b/src/components/run/InterpretationLog.tsx @@ -513,6 +513,16 @@ export const InterpretationLog: React.FC = ({ isOpen, se {t('interpretation_log.titles.output_preview')} + {!(hasScrapeListAction || hasScrapeSchemaAction || hasScreenshotAction) && ( + + + + {t('interpretation_log.messages.no_selection')} + + + + )} + {showPreviewData && availableTabs.length > 0 && ( <> {shouldShowTabs && ( From f9309a743891faf7bca907e0c07fea8ff3e947fc Mon Sep 17 00:00:00 2001 From: Rohit Rajan Date: Wed, 22 Oct 2025 16:10:41 +0530 Subject: [PATCH 2/2] chore: rm bg-color fixed highlighting --- src/helpers/capturedElementHighlighter.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/helpers/capturedElementHighlighter.ts b/src/helpers/capturedElementHighlighter.ts index 4eb7aa3e..3d05af54 100644 --- a/src/helpers/capturedElementHighlighter.ts +++ b/src/helpers/capturedElementHighlighter.ts @@ -27,7 +27,6 @@ class CapturedElementHighlighter { ${cssSelector} { outline: 2px dotted #ff00c3 !important; outline-offset: 2px !important; - background-color: rgba(255, 0, 195, 0.08) !important; box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5) !important; } `);