Skip to content

Commit 60ba541

Browse files
fix: prevent checkpoint text from wrapping in non-English languages (#8207)
Co-authored-by: Roo Code <[email protected]>
1 parent 9dabb85 commit 60ba541

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webview-ui/src/components/chat/checkpoints/CheckpointSaved.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export const CheckpointSaved = ({ checkpoint, ...props }: CheckpointSavedProps)
3636

3737
return (
3838
<div className="group flex items-center justify-between gap-2 pt-2 pb-3 ">
39-
<div className="flex items-center gap-2 text-blue-400">
39+
<div className="flex items-center gap-2 text-blue-400 whitespace-nowrap">
4040
<GitCommitVertical className="w-4" />
4141
<span className="font-semibold">{t("chat:checkpoint.regular")}</span>
4242
{isCurrent && <span className="text-muted">({t("chat:checkpoint.current")})</span>}

0 commit comments

Comments
 (0)