fix(ui): prevent hidden quota row from overflowing
Use w-full instead of min-w-0/flex-1 + overflow-x-auto so the hidden quota chips wrap cleanly instead of stretching the row. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
@@ -1270,7 +1270,7 @@ export default function ProviderLimits() {
|
||||
visibility_off
|
||||
</span>
|
||||
<span className="shrink-0">Hidden:</span>
|
||||
<div className="flex min-w-0 flex-1 items-center gap-1 overflow-x-auto whitespace-nowrap">
|
||||
<div className="flex w-full items-center gap-1">
|
||||
{hiddenQuotaRows.map((quotaRow) => (
|
||||
<button
|
||||
key={getQuotaVisibilityKey(quotaRow)}
|
||||
|
||||
Reference in New Issue
Block a user