From aa0f7abdac6d439dcef95caeca671ea52335c530 Mon Sep 17 00:00:00 2001 From: pablodanswer Date: Tue, 9 Jul 2024 19:14:41 -0700 Subject: [PATCH] add basic table wrapping (#1791) --- .../admin/connectors/table/SingleUseConnectorsTable.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/web/src/components/admin/connectors/table/SingleUseConnectorsTable.tsx b/web/src/components/admin/connectors/table/SingleUseConnectorsTable.tsx index f1308a995..cf67e7df5 100644 --- a/web/src/components/admin/connectors/table/SingleUseConnectorsTable.tsx +++ b/web/src/components/admin/connectors/table/SingleUseConnectorsTable.tsx @@ -111,8 +111,10 @@ export function SingleUseConnectorsTable< )} {specialColumns?.map(({ key, getValue }) => ( - - {getValue(connectorIndexingStatus)} + +
+ {getValue(connectorIndexingStatus)} +
))}