Merge pull request #11683 from influxdata/fix/plugin-form-button-wording

fix(ui/dataLoaders): Update plugin config button to 'Done'
pull/11689/head
Iris Scholten 2019-02-05 13:15:47 -08:00 committed by GitHub
commit 3a4ea24cd1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View File

@ -6,7 +6,7 @@
1. [11678](https://github.com/influxdata/influxdb/pull/11678): Update the System Telegraf Plugin bundle to include the swap plugin
## UI Improvements
1. [11683](https://github.com/influxdata/influxdb/pull/11683): Change the wording for the plugin config form button to Done
## v2.0.0-alpha.1 [2019-01-23]

View File

@ -65,7 +65,10 @@ export class PluginConfigForm extends PureComponent<Props> {
</div>
</FancyScrollbar>
</div>
<OnboardingButtons autoFocusNext={this.autoFocus} />
<OnboardingButtons
autoFocusNext={this.autoFocus}
nextButtonText={'Done'}
/>
</Form>
)
}