Fix link to deployments from autocomplete not including pathPrefix (#209)

Signed-off-by: Risha Mars <mars@buoyant.io>
This commit is contained in:
Risha Mars 2018-01-25 16:47:39 -08:00 committed by GitHub
parent b861318e86
commit 8f63c2b7a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ export default class Sidebar extends React.Component {
}
onAutocompleteSelect(deployment) {
let pathToDeploymentPage = `/deployment?deploy=${deployment}`;
let pathToDeploymentPage = `${this.props.pathPrefix}/deployment?deploy=${deployment}`;
this.props.history.push(pathToDeploymentPage);
this.setState({
autocompleteValue: '',