We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe5d057 commit 62c63d1Copy full SHA for 62c63d1
src/main/java/com/netspi/awssigner/controller/AWSSignerController.java
@@ -294,8 +294,7 @@ private void initListeners() {
294
Profile newProfile = newProfileOptional.get();
295
if (profile.getName().equals(newProfile.getName())) {
296
//Showing the same profile. we can update UI fields.
297
- view.profileStatusTextLabel.putClientProperty("html.disable", null);
298
- view.profileStatusTextLabel.setText("<html><font color='darkgreen'>Success</font></html>");
+ view.profileStatusTextLabel.setText("Success");
299
if (profile instanceof CommandProfile) {
300
view.commandExtractedAccessKeyTextField.setText(creds.getAccessKey());
301
view.commandExtractedSecretKeyTextField.setText(creds.getSecretKey());
0 commit comments