-
Notifications
You must be signed in to change notification settings - Fork 592
master #23
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
master #23
Conversation
# Conflicts: # README.md # src/data-provider.js # src/vis-physical/index.js
…visualizer is installed)
|
all .sh files should be removed |
| @@ -0,0 +1,124 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | |||
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.
@DovAmir last time we determined this file wasn't required. Can we leave it out?
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.
yes sorry about that, i thought it was in .gitignore
the .idea directory and the *.sh files should not be there
| for(let i=0;i<objects.length;i++){ | ||
| let object = objects[i]; | ||
| if(object.Status.State=="running" && object.DesiredState=="running") { | ||
| if( object.DesiredState=="running") { //object.Status.State=="running" && |
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.
Did you mean to comment out object.Status.State @DovAmir?
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.
Yes, If a containers DesiredState is running, but its actual state is failed, I want it to appear in the UI with a red failed state,
see the updated nodes.png to see why I want to show non running states.
mode ui improvments:
show container status (running/faild)
show many containers in a node clearly
click container to see all container data (currently works only in master )