Skip to content

Commit 74d9ecb

Browse files
committed
update issue template
1 parent 0797c90 commit 74d9ecb

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/ISSUE_TEMPLATE/revoke.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ body:
4040
label: Revocation Reason
4141
description: Why are you requesting this revocation?
4242
options:
43-
- Compromised (private key exposed)
44-
- Lost (private key lost/inaccessible)
45-
- Superseded (replacing with new certificate)
43+
- Compromised
44+
- Lost
45+
- Superseded
4646
- Other
4747
validations:
4848
required: true

website/src/components/keyring-app.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -595,9 +595,9 @@ function RevokeForm({ t }: { t: typeof locales.en }) {
595595
<Select onValueChange={v => form.setValue("reason", v)}>
596596
<SelectTrigger><SelectValue placeholder={t.revoke.reason} /></SelectTrigger>
597597
<SelectContent>
598-
<SelectItem value="Compromised (private key exposed)">{t.revoke.reasons.compromised}</SelectItem>
599-
<SelectItem value="Lost (private key lost/inaccessible)">{t.revoke.reasons.lost}</SelectItem>
600-
<SelectItem value="Superseded (replacing with new certificate)">{t.revoke.reasons.superseded}</SelectItem>
598+
<SelectItem value="Compromised">{t.revoke.reasons.compromised}</SelectItem>
599+
<SelectItem value="Lost">{t.revoke.reasons.lost}</SelectItem>
600+
<SelectItem value="Superseded">{t.revoke.reasons.superseded}</SelectItem>
601601
<SelectItem value="Other">Other</SelectItem>
602602
</SelectContent>
603603
</Select>

0 commit comments

Comments
 (0)