fix(ui): wrap long branch names in create PR dialog

This commit is contained in:
DhanushSantosh
2026-02-04 10:15:58 +05:30
parent e9c2afcc02
commit 0b6e84ec6e

View File

@@ -241,9 +241,9 @@ export function CreatePRDialog({
<GitPullRequest className="w-5 h-5" /> <GitPullRequest className="w-5 h-5" />
Create Pull Request Create Pull Request
</DialogTitle> </DialogTitle>
<DialogDescription> <DialogDescription className="break-words">
Push changes and create a pull request from{' '} Push changes and create a pull request from{' '}
<code className="font-mono bg-muted px-1 rounded">{worktree.branch}</code> <code className="font-mono bg-muted px-1 rounded break-all">{worktree.branch}</code>
</DialogDescription> </DialogDescription>
</DialogHeader> </DialogHeader>