-
Notifications
You must be signed in to change notification settings - Fork 4
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
PMM-13428 Fix add remote instance issues. #784
Conversation
form?.change('address', 'localhost'); | ||
} else { | ||
form?.change('address', ''); | ||
console.log(form?.getState().values?.address); |
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.
console.log(form?.getState().values?.address); |
} else { | ||
form?.change('address', ''); | ||
console.log(form?.getState().values?.address); | ||
if (form?.getState().values?.address === undefined || form?.getState().values?.address === '' ) { |
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.
if (form?.getState().values?.address === undefined || form?.getState().values?.address === '' ) { | |
if (!form?.getState().values?.address) { |
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.
Outside of the one comment, just what Alex pointed out.
What this PR does / why we need it:
It doesn't override address when node or agent is changed.
dropped node/agent selection for HAProxy and External exporter as it doesn't have effect.
Which issue(s) this PR fixes:
Fixes #
Special notes for your reviewer: