Skip to content

Commit 164ae0a

Browse files
author
OpenShift Bot
authored
Merge pull request #2104 from spadgett/view-all-projects-case
Merged by openshift-bot
2 parents 181d896 + 01ebe99 commit 164ae0a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/scripts/directives/nav.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -288,14 +288,14 @@ angular.module('openshiftConsole')
288288
return makeOption(project, false);
289289
});
290290
} else {
291-
// Show the current project and a "View all Projects" link.
291+
// Show the current project and a "View All Projects" link.
292292
options = [ makeOption(projects[name], true) ];
293293
}
294294

295295
select.empty();
296296
select.append(options);
297297
select.append($('<option data-divider="true"></option>'));
298-
select.append($('<option value="">View all Projects</option>'));
298+
select.append($('<option value="">View All Projects</option>'));
299299
select.selectpicker('refresh');
300300
};
301301

dist/scripts/scripts.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10147,7 +10147,7 @@ return n ? a.text(d(e)) : a.text(m(e, u)), a;
1014710147
};
1014810148
_.size(l) <= 100 ? (u = e("orderByDisplayName")(l), y = _.map(u, function(e) {
1014910149
return n(e, !1);
10150-
})) : 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");
10150+
})) : 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");
1015110151
}
1015210152
}, C = function() {
1015310153
return s.list().then(function(e) {

0 commit comments

Comments
 (0)