Skip to content

Commit 8d999e6

Browse files
Gkrumbach07claude
andauthored
fix(frontend): change Jira connection label from Username to Email (#926)
## Summary - Jira Cloud requires a full email for authentication, but the connection form labeled the field "Username" - Changed the label to "Email", set input type to `email`, and updated placeholder/helper text accordingly ## Test plan - [ ] Open the Jira connection card in the frontend - [ ] Verify the field label reads "Email" instead of "Username" - [ ] Verify the placeholder shows `your-email@redhat.com` - [ ] Verify the helper text reads "Your Jira Cloud login email (e.g., jdoe@redhat.com)" 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent f6a5543 commit 8d999e6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

components/frontend/src/components/jira-connection-card.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -152,18 +152,18 @@ export function JiraConnectionCard({ status, onRefresh }: Props) {
152152
/>
153153
</div>
154154
<div>
155-
<Label htmlFor="jira-username" className="text-sm">Username</Label>
155+
<Label htmlFor="jira-email" className="text-sm">Email</Label>
156156
<Input
157-
id="jira-username"
158-
type="text"
159-
placeholder="rh-dept-kerberos or your-email@redhat.com"
157+
id="jira-email"
158+
type="email"
159+
placeholder="your-email@redhat.com"
160160
value={username}
161161
onChange={(e) => setUsername(e.target.value)}
162162
disabled={connectMutation.isPending}
163163
className="mt-1"
164164
/>
165165
<p className="text-xs text-muted-foreground mt-1">
166-
Your Jira login username (e.g., rh-dept-kerberos)
166+
Your Jira Cloud login email (e.g., jdoe@redhat.com)
167167
</p>
168168
</div>
169169
<div>

0 commit comments

Comments
 (0)