Skip to content

Commit bea5f75

Browse files
authored
Update index.html (#6)
1 parent 5a116d5 commit bea5f75

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,8 @@ <h3 class="font-semibold text-lg">JSON Output</h3>
349349
const thead = document.querySelector(`#${tableId} thead`);
350350

351351
const headerBgClass = document.documentElement.classList.contains('dark') ? 'bg-zinc-900' : 'bg-slate-50';
352-
const firstColClass = type === 'conn' ? 'min-w-[450px]' : 'min-w-[350px]';
352+
// UPDATED: Increased width from 450px to 600px for Connection References
353+
const firstColClass = type === 'conn' ? 'min-w-[600px]' : 'min-w-[350px]';
353354

354355
// Header
355356
let headerHTML = `<tr><th scope="col" class="px-4 py-3 ${firstColClass} border-b border-slate-200 dark:border-zinc-700 ${headerBgClass}">${keyLabel}</th>`;

0 commit comments

Comments
 (0)