Skip to content
This repository has been archived by the owner on Mar 27, 2019. It is now read-only.

Commit

Permalink
Merge pull request #186 from tallpauley/fix-dash-breadcrumb
Browse files Browse the repository at this point in the history
Bug fix: dashes in breadcrumb break
  • Loading branch information
tallpauley committed Sep 22, 2017
2 parents b2783aa + 725a55a commit 1a19146
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/Secrets/Generic/Generic.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ export default class GenericSecretBackend extends React.Component {
var stepLabelStyle = { paddingLeft: '10px'}
var iconContainerStyle = {}
}
return (<Step key={index}><StepLabel style={Object.assign({paddingRight: '10px', fontSize: '16px'}, stepLabelStyle)} iconContainerStyle={iconContainerStyle} icon={<span />}><Link to={`/secrets/generic/${relativelink}`}>{dir}</Link></StepLabel></Step>)
return (<Step key={index}><StepLabel style={Object.assign({paddingRight: '10px', fontSize: '16px'}, stepLabelStyle)} iconContainerStyle={iconContainerStyle} icon={<span />}><Link to={`/secrets/generic/${relativelink}`}>{dir.replace("-",'\u2011')}</Link></StepLabel></Step>)
});
}

Expand Down

0 comments on commit 1a19146

Please sign in to comment.