feat: move table above data row collection count
This commit is contained in:
@@ -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
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user