diff --git a/src/components/run/InterpretationLog.tsx b/src/components/run/InterpretationLog.tsx index 0f1f1185..faf965e9 100644 --- a/src/components/run/InterpretationLog.tsx +++ b/src/components/run/InterpretationLog.tsx @@ -379,49 +379,63 @@ export const InterpretationLog: React.FC = ({ isOpen, se )} {(activeTab === availableTabs.findIndex(tab => tab.id === 'captureText') || singleContentType === 'captureText') && captureTextData.length > 0 && ( - - - - - {getCaptureTextColumns.map((column) => ( + + +
+ + - {column} + Label - ))} - - - - {captureTextData.map((row, idx) => ( - - {getCaptureTextColumns.map((column) => ( + + Value + + + + + {getCaptureTextColumns.map((column, index) => ( + + + {column} + - {row[column]} + {captureTextData[0][column]} - ))} - - ))} - -
-
+ + ))} + + + + )}