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()
|
this.props.onDecrementCurrentStepIndex()
|
||||||
}
|
}
|
||||||
|
|
||||||
private handleSelectTelegrafPlugin = (telegrafPlugin: DataLoaderType) => {
|
private handleSelectTelegrafPlugin = async (
|
||||||
this.props.onSetDataLoadersType(telegrafPlugin)
|
telegrafPlugin: DataLoaderType
|
||||||
|
) => {
|
||||||
|
await this.props.onSetDataLoadersType(telegrafPlugin)
|
||||||
|
this.handleClickNext()
|
||||||
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue