-
Notifications
You must be signed in to change notification settings - Fork 75
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
First batch of React error fixes #1270
Changes from 1 commit
bd7c759
8d4d3c2
881c93a
9051ec6
19efbfa
f431b45
ae7e6be
a2cfa53
e7bf5c8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -159,7 +159,10 @@ export const VmNeedsShutdown = ({ vm }) => { | |
position="bottom" | ||
hasAutoWidth | ||
bodyContent={body}> | ||
<Label className="resource-state-text" href="javascript:null" color="blue" id={`vm-${vm.name}-needs-shutdown`} icon={<PendingIcon />}>{_("Changes pending")}</Label> | ||
<Label className="resource-state-text" color="blue" id={`vm-${vm.name}-needs-shutdown`} | ||
icon={<PendingIcon />} onClick={() => null}> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Wondering if dropping There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I added it. It needs to have either a |
||
{_("Changes pending")} | ||
</Label> | ||
</Popover> | ||
); | ||
}; |
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 added line is not executed by any test. Details