removed warning

This commit is contained in:
snoop 2017-07-28 19:46:35 +09:00
parent e82119cf67
commit 7641924e4a

View File

@ -121,17 +121,17 @@ export class ConfigStepper extends React.Component<ConfigStepperProps, ConfigSte
<Container fluid> <Container fluid>
<Step.Group fluid> <Step.Group fluid>
<Step active={this.handleActive(1)} completed={this.handleCompleted(1)}> <Step active={this.handleActive(1)} completed={this.handleCompleted(1)}>
<Icon name='settings' color='grey'/> <Icon name='settings' color='grey' />
<Step.Content title='Step 1' description='골라골라 크롤러를 골라' /> <Step.Content title='Step 1' description='골라골라 크롤러를 골라' />
</Step> </Step>
<Step active={this.handleActive(2)} completed={this.handleCompleted(2)}> <Step active={this.handleActive(2)} completed={this.handleCompleted(2)}>
<Icon name='list ul' color='grey'/> <Icon name='list ul' color='grey' />
<Step.Content title='Step 2' description='골라골라 아이템도 골라' /> <Step.Content title='Step 2' description='골라골라 아이템도 골라' />
</Step> </Step>
<Step active={this.handleActive(3)} completed={this.handleCompleted(3)}> <Step active={this.handleActive(3)} completed={this.handleCompleted(3)}>
<Icon name='options' color='grey'/> <Icon name='options' color='grey' />
<Step.Content title='Step 3' description='나머지도 골라 아 빨리' /> <Step.Content title='Step 3' description='나머지도 골라 아 빨리' />
</Step> </Step>
</Step.Group> </Step.Group>
@ -344,7 +344,7 @@ export class CrawlerAuthInputs extends React.Component<CrawlerAuthInputsProps, C
return null; return null;
} }
return ( return (
<Segment style={{width:'350px'}}> <Segment style={{ width: '350px' }}>
<Table basic='very' celled > <Table basic='very' celled >
<Table.Header> <Table.Header>
<Table.Row> <Table.Row>
@ -401,21 +401,21 @@ export class ETCSelector extends React.Component<ETCSelectorProps, ETCSelectorSt
</Table.Cell> </Table.Cell>
<Table.Cell> <Table.Cell>
<Form.Group inline> <Form.Group inline>
<Form.Radio <Form.Radio
label='5 seconds' label='5 seconds'
name='radioGroup' name='radioGroup'
value='5' value='5'
checked={this.state.interval === 5} checked={this.state.interval === 5}
onChange={this.handleIntervalChange} onChange={this.handleIntervalChange}
/> />
<Form.Radio <Form.Radio
label='10 seconds' label='10 seconds'
name='radioGroup' name='radioGroup'
value='10' value='10'
checked={this.state.interval === 10} checked={this.state.interval === 10}
onChange={this.handleIntervalChange} onChange={this.handleIntervalChange}
/> />
<Form.Radio <Form.Radio
label='15 seconds' label='15 seconds'
name='radioGroup' name='radioGroup'
value='15' value='15'