Skip to content

Commit

Permalink
feat: changed the table width to 750px
Browse files Browse the repository at this point in the history
  • Loading branch information
stone-lyl committed Jan 27, 2025
1 parent 3705a7e commit 0974303
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ui/src/components/Node/table/TableNodeComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ const TableNodeComponent = ({ id, data }: {
className="shadow-xl bg-gray-50 border rounded border-gray-300 text-xs"
>
<CustomHandle id={input.id} isConnectable={true} isInput={true} />
<div data-cy={'data-story-table'} className="text-gray-600 max-w-[256px] bg-gray-100 rounded font-mono -mt-3">
<div data-cy={'data-story-table'} className="text-gray-600 max-w-[750px] bg-gray-100 rounded font-mono -mt-3">
{isDataFetched ? (
<div
ref={parentRef}
Expand All @@ -172,7 +172,7 @@ const TableNodeComponent = ({ id, data }: {
data-cy={'data-story-table-scroll'}
className="max-h-64 min-w-6 nowheel overflow-auto scrollbar rounded-sm w-full"
>
<table className="table-fixed grid max-w-[256px]">
<table className="table-fixed grid max-w-[750px]">
<MemoizedTableHeader
headerGroups={getHeaderGroups()}
virtualColumns={virtualColumns}
Expand Down

0 comments on commit 0974303

Please sign in to comment.