| Summary: | [fork][userinterface_public_555]Clicking Openshift Origin logo didn't send get project request | ||
|---|---|---|---|
| Product: | OKD | Reporter: | Yadan Pei <yapei> |
| Component: | Management Console | Assignee: | Steve Goodwin <sgoodwin> |
| Status: | CLOSED CURRENTRELEASE | QA Contact: | Yadan Pei <yapei> |
| Severity: | medium | Docs Contact: | |
| Priority: | medium | ||
| Version: | 3.x | CC: | aos-bugs, mmccomas, spadgett |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2016-05-12 17:13:47 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
|
Description
Yadan Pei
2016-01-25 08:23:35 UTC
@spadgett The logo link doesn't refresh the page, thus any new projects created via the cli won't display just by clicking the link. What are your thoughts on handling this? Steve, did the ID on the logo change? We have a special handler in JS for this:
$('#openshift-logo').on('click.projectsPage', function() {
// Force a reload. Angular doesn't reload the view when the URL doesn't change.
$route.reload();
});
...
$scope.$on('$destroy', function(){
// The click handler is only necessary on the projects page.
$('#openshift-logo').off('click.projectsPage');
});
We should add a comment in the HTML saying there's a click handler for that ID. (In reply to Steve Goodwin from comment #4) > Fixed in https://github.com/openshift/origin/pull/6663 which image shall i use to verify the bug? didn't see new fork_ami The origin pull request just merged. verified on devenv-rhel7_3313, works as expected |