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

Co-authored-by: Roo Code <roomote@roocode.com>
This commit is contained in:
roomote[bot] 2025-09-22 23:02:43 -04:00 committed by GitHub
parent 9dabb85007
commit 60ba5411b7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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>}