Merge pull request #1818 from influxdata/feat/selection-step-type-next
Feat/selection step type nextpull/10616/head
commit
97687ad37f
|
@ -156,8 +156,12 @@ class SelectDataSourceStep extends PureComponent<Props, State> {
|
|||
this.props.onDecrementCurrentStepIndex()
|
||||
}
|
||||
|
||||
private handleSelectTelegrafPlugin = (telegrafPlugin: DataLoaderType) => {
|
||||
this.props.onSetDataLoadersType(telegrafPlugin)
|
||||
private handleSelectTelegrafPlugin = async (
|
||||
telegrafPlugin: DataLoaderType
|
||||
) => {
|
||||
await this.props.onSetDataLoadersType(telegrafPlugin)
|
||||
this.handleClickNext()
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue