-
Notifications
You must be signed in to change notification settings - Fork 30
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
feat(ws): Notebooks 2.0 // FrontEnd // Add CPU and RAM columns #169
Conversation
Signed-off-by: Senan Zedan (EXT-Nokia) <[email protected]>
Signed-off-by: Senan Zedan (EXT-Nokia) <[email protected]>
@@ -21397,4 +21397,4 @@ | |||
} | |||
} | |||
} | |||
} | |||
} |
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.
@senanz This change also needs to be reverted, otherwise the npm install
will change it back as before locally for everyone.
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.
Fixed.
@@ -129,6 +134,8 @@ export const Workspaces: React.FunctionComponent = () => { | |||
state: 'State', | |||
homeVol: 'Home Vol', | |||
dataVol: 'Data Vol', | |||
cpu: 'cpu', |
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.
For the column name, it should be uppercase
cpu: 'cpu', | |
cpu: 'CPU', |
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.
Fixed
@@ -129,6 +134,8 @@ export const Workspaces: React.FunctionComponent = () => { | |||
state: 'State', | |||
homeVol: 'Home Vol', | |||
dataVol: 'Data Vol', | |||
cpu: 'cpu', | |||
ram: 'ram', |
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.
ram: 'ram', | |
ram: 'Memory', |
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.
Fixed
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: ederign, paulovmr The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/lgtm |
Add new columns CPU and RAM that used by the workspace, fixes #151