mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-19 00:01:29 +00:00
fix(ui): wrap long descriptions in Router Settings General tab to remove horizontal scroll
Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This commit is contained in:
parent
e7b9357bc2
commit
140c3ffa4b
1 changed files with 2 additions and 2 deletions
|
|
@ -255,7 +255,7 @@ const GeneralSettings: React.FC<GeneralSettingsPageProps> = ({ accessToken, user
|
|||
.filter((value) => value.field_type !== "TypedDictionary" && value.field_tab !== PROMPT_CACHING_TAB)
|
||||
.map((value, index) => (
|
||||
<TableRow key={index}>
|
||||
<TableCell>
|
||||
<TableCell className="max-w-md whitespace-normal align-top">
|
||||
<Text>{value.field_name}</Text>
|
||||
<p
|
||||
style={{
|
||||
|
|
@ -263,7 +263,7 @@ const GeneralSettings: React.FC<GeneralSettingsPageProps> = ({ accessToken, user
|
|||
color: "#808080",
|
||||
fontStyle: "italic",
|
||||
}}
|
||||
className="mt-1"
|
||||
className="mt-1 whitespace-normal break-words"
|
||||
>
|
||||
{value.field_description}
|
||||
</p>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue