Fix table horizontal overflow - add scroll and min-width

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Alejandro Gutiérrez
2026-02-02 02:13:03 +00:00
parent 887ebf0ab8
commit 6739a53fa8

View File

@@ -292,8 +292,8 @@ export function DeploymentsTable({ deployments, isLoading, onRefresh }: Deployme
</div>
{/* Table */}
<div className="bg-white dark:bg-stone-900 rounded-xl border border-slate-200 dark:border-stone-700/50 overflow-hidden shadow-sm">
<table className="w-full">
<div className="bg-white dark:bg-stone-900 rounded-xl border border-slate-200 dark:border-stone-700/50 overflow-x-auto shadow-sm">
<table className="w-full min-w-[900px]">
<thead>
{table.getHeaderGroups().map((headerGroup) => (
<tr key={headerGroup.id} className="border-b border-slate-200 dark:border-stone-800">