Skip to content

Commit

Permalink
feat(core): alphabetize applications in project config dropdown (#7549)
Browse files Browse the repository at this point in the history
  • Loading branch information
maggieneterval authored and mergify[bot] committed Oct 22, 2019
1 parent 828f7e7 commit f57c70b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/scripts/modules/core/src/projects/ProjectHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export class ProjectHeader extends React.Component<IProjectHeaderProps, IProject
</UISref>
<MenuItem divider={true} />
{config.applications &&
config.applications.map(app => (
config.applications.sort().map(app => (
<UISref key={app} to=".application.insight.clusters" params={{ application: app }}>
<MenuItem onClick={closeDropdown}> {app} </MenuItem>
</UISref>
Expand Down

0 comments on commit f57c70b

Please sign in to comment.