Skip to content

Commit

Permalink
Enable HTML rendering for lblCookieFlags within Intercept tab. (Fixes #…
Browse files Browse the repository at this point in the history
  • Loading branch information
DolphFlynn committed Jan 8, 2024
1 parent 83dc33e commit 950b307
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/gui/JWTInterceptTab.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
public class JWTInterceptTab extends JPanel {

private static final long serialVersionUID = 1L;
public static final String HTML_DISABLE = "html.disable";
private static final String HTML_DISABLE = "html.disable";
private final JWTInterceptModel jwtIM;
private final RSyntaxTextAreaFactory rSyntaxTextAreaFactory;
private JRadioButton rdbtnRecalculateSignature;
Expand Down Expand Up @@ -242,6 +242,7 @@ private void drawGui() {
actionPanel.add(chkbxCVEAttack, c);

lblCookieFlags = new JLabel("");
lblCookieFlags.putClientProperty(HTML_DISABLE, null);
c.gridy = 12;
actionPanel.add(lblCookieFlags, c);

Expand Down

0 comments on commit 950b307

Please sign in to comment.