Fix indentation

This commit is contained in:
Thomas Nordquist
2019-04-25 00:28:48 +02:00
parent 2c5c218fd1
commit a56b41635c

View File

@@ -120,12 +120,12 @@ class Settings extends React.Component<Props, {}> {
<div style={{ padding: '8px', display: 'flex' }}> <div style={{ padding: '8px', display: 'flex' }}>
<InputLabel htmlFor="auto-expand" style={{ flex: '1', marginTop: '8px' }}>Auto Expand</InputLabel> <InputLabel htmlFor="auto-expand" style={{ flex: '1', marginTop: '8px' }}>Auto Expand</InputLabel>
<Select <Select
value={autoExpandLimit} value={autoExpandLimit}
onChange={this.onChangeAutoExpand} onChange={this.onChangeAutoExpand}
input={<Input name="auto-expand" id="auto-expand-label-placeholder" />} input={<Input name="auto-expand" id="auto-expand-label-placeholder" />}
name="auto-expand" name="auto-expand"
className={classes.input} className={classes.input}
style={{ flex: '1' }} style={{ flex: '1' }}
> >
{limits} {limits}
</Select> </Select>