Merge pull request #11689 from influxdata/fix/collectors-configure-button

fix(ui/dataLoaders): Update the collectors configure step button to 'Create and Verify'
pull/11693/head
Iris Scholten 2019-02-05 13:46:33 -08:00 committed by GitHub
commit 993a8d6e70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -7,6 +7,7 @@
## UI Improvements
1. [11683](https://github.com/influxdata/influxdb/pull/11683): Change the wording for the plugin config form button to Done
1. [11689](https://github.com/influxdata/influxdb/pull/11689): Change the wording for the Collectors configure step button to Create and Verify
## v2.0.0-alpha.1 [2019-01-23]

View File

@ -59,7 +59,10 @@ export class TelegrafPluginInstructions extends PureComponent<Props> {
</div>
</FancyScrollbar>
</div>
<OnboardingButtons onClickBack={onDecrementStep} />
<OnboardingButtons
onClickBack={onDecrementStep}
nextButtonText={'Create and Verify'}
/>
</Form>
)
}