Skip to content

Commit 353f6ef

Browse files
committed
Changed buttons
1 parent 89d11a7 commit 353f6ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/src/routes/_layout/document-data-extractors.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ function ExtractorExamples({documentDataExtractor, is_selected, onClick}: {docum
124124
</NumberInput>
125125
</Flex>
126126
</Td>
127+
<Td></Td>
127128
<Td>
128129
<Textarea placeholder="Data to Extract"
129130
onChange={(e)=>setData(JSON.parse(e.target.value))}
@@ -136,16 +137,15 @@ function ExtractorExamples({documentDataExtractor, is_selected, onClick}: {docum
136137
}).then(()=> queryClient.invalidateQueries({ queryKey: ['document_data_extractors'] }));
137138
}}>Add Example</Button>
138139
</Td>
139-
<Td></Td>
140140
</Tr>
141141
</Tbody>
142142
<Tbody>
143143
{documentDataExtractor.document_data_examples.map((documentDataExample) => (
144144
<Tr key={documentDataExample.id} bgColor={secBgColor}>
145145
<Td></Td>
146146
<Td><Tag><Link href={"/documents#"+documentDataExample.document_id}>{documentDataExample.document_id}</Link></Tag></Td>
147-
<Td><Text whiteSpace="pre-wrap">{documentDataExample.data}</Text></Td>
148147
<Td></Td>
148+
<Td><Text whiteSpace="pre-wrap">{documentDataExample.data}</Text></Td>
149149
<Td></Td>
150150
</Tr>
151151
))}

0 commit comments

Comments
 (0)