feat: move table above data row collection count

This commit is contained in:
karishmas6
2024-08-26 20:02:52 +05:30
parent c92c1ed267
commit cce59d08c4

View File

@@ -140,16 +140,7 @@ export const InterpretationLog = () => {
{ {
getList ? ( getList ? (
<> <>
<FormControl> <TableContainer component={Paper}>
<FormLabel>What is the maximum number of rows you want to extract?</FormLabel>
<RadioGroup row>
<FormControlLabel value="10" control={<Radio />} label="10" />
<FormControlLabel value="100" control={<Radio />} label="100" />
<FormControlLabel value="custom" control={<Radio />} label="Custom" />
</RadioGroup>
</FormControl>
<TableContainer component={Paper}>
<Table sx={{ minWidth: 650 }} stickyHeader aria-label="simple table"> <Table sx={{ minWidth: 650 }} stickyHeader aria-label="simple table">
<TableHead> <TableHead>
<TableRow> <TableRow>
@@ -178,6 +169,15 @@ export const InterpretationLog = () => {
</TableBody> </TableBody>
</Table> </Table>
</TableContainer> </TableContainer>
<FormControl>
<FormLabel>What is the maximum number of rows you want to extract?</FormLabel>
<RadioGroup row>
<FormControlLabel value="10" control={<Radio />} label="10" />
<FormControlLabel value="100" control={<Radio />} label="100" />
<FormControlLabel value="custom" control={<Radio />} label="Custom" />
</RadioGroup>
</FormControl>
</> </>
) : null ) : null
} }