-
Notifications
You must be signed in to change notification settings - Fork 313
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
fix: 802.1x tab displaying and refresh #5055
Conversation
Signed-off-by: MMaiero <[email protected]>
Disabled parameters initializationAfter first opening the tab the field are disabled as expected Before this PR: After this PR: Note: both screenshot were taken upon first opening the 802.1x tab in Kura 802.1x tab enabling802.1x tab is correctly enabled when either one (or both) between ipv4 and ipv6 is enabled and the wireless security is set to WPA Enterprise. |
logger.info("update"); | ||
setValues(); | ||
refreshForm(); | ||
this.netTabs.updateTabs(); | ||
logger.info("update... done"); |
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.
Only thing here is... is this log entry worth the info
level or would it be better suited for the debug
level?
logger.info("update"); | |
setValues(); | |
refreshForm(); | |
this.netTabs.updateTabs(); | |
logger.info("update... done"); | |
logger.debug("update"); | |
setValues(); | |
refreshForm(); | |
this.netTabs.updateTabs(); | |
logger.debug("update... done"); |
@@ -370,6 +382,7 @@ private void refreshForm() { | |||
} | |||
|
|||
private void reset() { | |||
logger.info("reset"); |
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.
Same here
logger.info("reset"); | |
logger.debug("reset"); |
@@ -390,6 +403,8 @@ private void reset() { | |||
this.keystorePid.setValue(""); | |||
this.caCertName.setValue(""); | |||
this.publicPrivateKeyPairName.setValue(""); | |||
update(); | |||
logger.info("reset... done"); |
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.
... and here
logger.info("reset... done"); | |
logger.debug("reset... done"); |
Signed-off-by: MMaiero <[email protected]>
@mattdibi I have removed the logs. |
Brief description of the PR. [e.g. Added
null
check onobject
to avoidNullPointerException
]Related Issue: N/A
Description of the solution adopted: Another attempt to improve the availability and refresh for the 802.1x tab in the wireless section
Screenshots: N/A
Manual Tests: Tested with ipv4 and ipv6 disabled as well enabling each of them. All the tests done first without and then with the selection of the enterprise security.
Any side note on the changes made: N/A