Frontend: Fix size of tabs in data processing plot choice

This commit is contained in:
2023-05-06 07:46:02 +02:00
parent 7dc8ded38b
commit cfc1c4d7ce

View File

@@ -62,11 +62,13 @@ class DataProcessingPlots extends Component<MyProps, MyState> {
render() {
return <Paper style={{textAlign: 'center'}} sx={{ height: 430, width: "100%" }}>
<Toolbar>
<Grid container sx={{ minWidth: 300 }} >
<Tabs value={this.state.tab} onChange={this.tabsOnChange}>
<Tab label="Indexing" value={1}/>
<Tab label="Spot finding" value={2} />
<Tab label="Rad. integration" value={3} />
<Tab label="Radial integration" value={3} />
</Tabs>
</Grid>
<Grid container justifyContent="flex-end">
<FormControl variant="standard" sx={{ m: 1, minWidth: 120 }}>
<Select