Browse Source

fix: prevent checkpoint text from wrapping in non-English languages (#8207)

Co-authored-by: Roo Code <[email protected]>
roomote[bot] 3 months ago
parent
commit
60ba5411b7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      webview-ui/src/components/chat/checkpoints/CheckpointSaved.tsx

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

@@ -36,7 +36,7 @@ export const CheckpointSaved = ({ checkpoint, ...props }: CheckpointSavedProps)
 
 	return (
 		<div className="group flex items-center justify-between gap-2 pt-2 pb-3 ">
-			<div className="flex items-center gap-2 text-blue-400">
+			<div className="flex items-center gap-2 text-blue-400 whitespace-nowrap">
 				<GitCommitVertical className="w-4" />
 				<span className="font-semibold">{t("chat:checkpoint.regular")}</span>
 				{isCurrent && <span className="text-muted">({t("chat:checkpoint.current")})</span>}