-
Notifications
You must be signed in to change notification settings - Fork 231
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove emptyMessage var if its not changing #1203
Conversation
@jhadvig I think the places we should make this change are
Hesitant to change a lot working code if it's not for one of the two above reasons. |
@spadgett ok, will update the PR so the changes only tackle mentioned reasons. |
So we do have the other #497 for empty states. I think for now we should probably only look at places when |
@spadgett PTAL |
app/scripts/directives/resources.js
Outdated
@@ -176,8 +176,6 @@ angular.module('openshiftConsole') | |||
pods: '=', | |||
// Optional active pods map to display whether or not pods have endpoints | |||
activePods: '=?', | |||
// Optional empty message to display when there are no pods. | |||
emptyMessage: '=?', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This breaks the loading message on the browse -> pods page.
@@ -194,8 +192,6 @@ angular.module('openshiftConsole') | |||
services: '=', | |||
portsByRoute: '=', | |||
showNodePorts: '=?', | |||
// Optional empty message to display when there are no pods. | |||
emptyMessage: '=?', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jhadvig Thanks for removing some completely unused variables |
@spadgett updated .. PTAL :) |
Thanks @jhadvig, will merge when the stream opens for 1.6 |
@jhadvig needs to be rebased |
@jhadvig actually this PR shouldn't have been touching vendor.js at all, I'm not seeing a reason for it to, make sure you clean/install deps/build after you rebase |
It was from when we were pulling in the bootstrap-switch dependency update. Should disappear on the clean/install |
[merge] |
Evaluated for origin web console merge up to f0588be |
Origin Web Console Merge Results: SUCCESS (https://ci.openshift.redhat.com/jenkins/job/test_pull_requests_origin_web_console/1069/) (Base Commit: 36c701f) |
Found out that there are place in the code where we use
emptyMessage
var as part of the scope, where we just set it to "No $resource to show" and thats it. So I've got rid of that and use the scopedloaded
variable to check if the resources are loaded since we do it on most parts of the code.Other option would be to get rid even of the
loaded
var and check only the resource variable, which wont be set by default in the controller... eg:Also removed
emptyMessage
var on places we didn't even used that variable in views.Will add
dist
after review@spadgett PTAL
Closes #1182