Skip to content

Commit 51296d7

Browse files
fix(dashboard): prevent reindexing status label from wrapping (#4789)
Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: [email protected] <[email protected]>
1 parent 9b5c0a6 commit 51296d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/fern-dashboard/src/components/settings/ToggleAskAiButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ export function ToggleAskAiButton({ docsUrl, initialAskAiStatus }: ToggleAskAiBu
179179

180180
return (
181181
<div className="flex items-center justify-end gap-2">
182-
{isReindexing && <p className="mr-1 w-20 text-sm">{getReindexingText()}</p>}
182+
{isReindexing && <p className="mr-1 w-24 text-sm whitespace-nowrap">{getReindexingText()}</p>}
183183
{isEnabled && !isReindexing && (
184184
<Button
185185
variant="outline"

0 commit comments

Comments
 (0)