Merge pull request #15088 from influxdata/fix/telegraf-404

fix(telegraf/configs): route to correct path for telegraf collectors
pull/15090/head
Michael Desa 2019-09-09 23:08:41 -04:00 committed by GitHub
commit f6cc72c83e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -159,7 +159,7 @@ class CollectorRow extends PureComponent<Props & WithRouterProps> {
private handleOpenConfig = (): void => {
const {collector, router, org} = this.props
router.push(`/orgs/${org.id}/telegrafs/${collector.id}/view`)
router.push(`/orgs/${org.id}/load-data/telegrafs/${collector.id}/view`)
}
private handleDeleteConfig = (): void => {

View File

@ -85,7 +85,7 @@ class TelegrafConfigOverlay extends PureComponent<Props> {
params: {orgID},
} = this.props
router.push(`/orgs/${orgID}/telegrafs`)
router.push(`/orgs/${orgID}/load-data/telegrafs`)
}
private handleDownloadConfig = async () => {