diff options
author | Yuuta Liang <yuutaw@student.cs.ubc.ca> | 2023-11-23 08:16:56 +0800 |
---|---|---|
committer | Yuuta Liang <yuutaw@student.cs.ubc.ca> | 2023-11-23 08:16:56 +0800 |
commit | 0e83d8d8d392c8d923c8d5b5b08be3cdc5423715 (patch) | |
tree | 7453915581a47f83d78a7a1c40f4285846d07c99 | |
parent | 6290e100fa679c9b962ddcf68d00f7b99c063f30 (diff) | |
download | jca-0e83d8d8d392c8d923c8d5b5b08be3cdc5423715.tar jca-0e83d8d8d392c8d923c8d5b5b08be3cdc5423715.tar.gz jca-0e83d8d8d392c8d923c8d5b5b08be3cdc5423715.tar.bz2 jca-0e83d8d8d392c8d923c8d5b5b08be3cdc5423715.zip |
Use basic ASCII
Signed-off-by: Yuuta Liang <yuutaw@student.cs.ubc.ca>
-rw-r--r-- | src/main/ui/RevokeDialog.java | 4 | ||||
-rw-r--r-- | src/main/ui/TemplateEditDialog.java | 9 |
2 files changed, 2 insertions, 11 deletions
diff --git a/src/main/ui/RevokeDialog.java b/src/main/ui/RevokeDialog.java index f611b0f..ad0d4be 100644 --- a/src/main/ui/RevokeDialog.java +++ b/src/main/ui/RevokeDialog.java @@ -28,8 +28,8 @@ import static ui.widgets.UIUtils.alert; * A dialog that presents user with cert info, revocation reason, and revocation time. * +----------------------------+ * |Revoking: CN=xyz (Serial: 1)| - * |Reason: <Drop Down> | - * |Time: <ISO-8601 text> | + * |Reason: (Drop Down) | + * |Time: (ISO-8601 text) | * | | * | Revoke Cancel| * +----------------------------+ diff --git a/src/main/ui/TemplateEditDialog.java b/src/main/ui/TemplateEditDialog.java index 7c33af6..a3986de 100644 --- a/src/main/ui/TemplateEditDialog.java +++ b/src/main/ui/TemplateEditDialog.java @@ -13,15 +13,6 @@ import static ui.widgets.UIUtils.alert; /** * A dialog that allows users to input template name, subject, and validity. - * ┌───────────────────────────┐ - * │ New Template │ - * │ │ - * │Template: _________│ - * │Subject: _________│ - * │Validity (Days): (Spinner)│ - * │ │ - * │ Add Cancel│ - * └───────────────────────────┘ */ public class TemplateEditDialog extends CertEditDialog<Template> { /** |