From 77624ad2b637c7f4e11abbc04eabb400a14e7347 Mon Sep 17 00:00:00 2001 From: comfydesigner Date: Tue, 7 Jul 2026 15:05:11 -0700 Subject: [PATCH] fix(ui): table scroll wrapper takes layout class; align auto-enable toggle The Table component applied its class to the inner instead of the scroll wrapper, so the Partner Nodes scroll container was unconstrained and the sticky header gap/height shifted on scroll. Apply the class to the wrapper and set border-spacing:0 on the table so the sticky header sits flush. Pad the auto-enable footer so its toggle lines up with the in-table row toggles. Co-Authored-By: Claude Opus 4.8 --- src/components/ui/table/Table.vue | 6 ++++-- .../dialogs/settings/PartnerNodesPanelContent.vue | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/components/ui/table/Table.vue b/src/components/ui/table/Table.vue index 8e6b32fe85..2ac41ff465 100644 --- a/src/components/ui/table/Table.vue +++ b/src/components/ui/table/Table.vue @@ -1,6 +1,8 @@