Skip to content

Commit

Permalink
Merge pull request #2104 from spadgett/view-all-projects-case
Browse files Browse the repository at this point in the history
Merged by openshift-bot
  • Loading branch information
OpenShift Bot committed Sep 18, 2017
2 parents 181d896 + 01ebe99 commit 164ae0a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/scripts/directives/nav.js
Expand Up @@ -288,14 +288,14 @@ angular.module('openshiftConsole')
return makeOption(project, false);
});
} else {
// Show the current project and a "View all Projects" link.
// Show the current project and a "View All Projects" link.
options = [ makeOption(projects[name], true) ];
}

select.empty();
select.append(options);
select.append($('<option data-divider="true"></option>'));
select.append($('<option value="">View all Projects</option>'));
select.append($('<option value="">View All Projects</option>'));
select.selectpicker('refresh');
};

Expand Down
2 changes: 1 addition & 1 deletion dist/scripts/scripts.js
Expand Up @@ -10147,7 +10147,7 @@ return n ? a.text(d(e)) : a.text(m(e, u)), a;
};
_.size(l) <= 100 ? (u = e("orderByDisplayName")(l), y = _.map(u, function(e) {
return n(e, !1);
})) : y = [ n(l[t], !0) ], v.empty(), v.append(y), v.append($('<option data-divider="true"></option>')), v.append($('<option value="">View all Projects</option>')), v.selectpicker("refresh");
})) : y = [ n(l[t], !0) ], v.empty(), v.append(y), v.append($('<option data-divider="true"></option>')), v.append($('<option value="">View All Projects</option>')), v.selectpicker("refresh");
}
}, C = function() {
return s.list().then(function(e) {
Expand Down

0 comments on commit 164ae0a

Please sign in to comment.