Skip to content

Commit

Permalink
Merge branch 'master' into fix/improve-use-send-telemetry-perf
Browse files Browse the repository at this point in the history
  • Loading branch information
ousmaneo authored Jul 12, 2024
2 parents df0a484 + 9f801ff commit 4f906f6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,11 @@ const customColumnRenderers = (indexSets: Array<IndexSet>): ColumnRenderers<Stre
attributes: {
title: {
renderCell: (_title: string, stream) => <TitleCell stream={stream} />,
width: 0.5,
},
index_set_title: {
renderCell: (_index_set_title: string, stream) => <IndexSetCell indexSets={indexSets} stream={stream} />,
width: 0.7,
width: 0.3,
},
throughput: {
renderCell: (_throughput: string, stream) => <ThroughputCell stream={stream} />,
Expand All @@ -52,19 +53,19 @@ const customColumnRenderers = (indexSets: Array<IndexSet>): ColumnRenderers<Stre
},
rules: {
renderCell: (_rules: StreamRule[], stream) => <StreamRulesCell stream={stream} />,
staticWidth: 130,
staticWidth: 100,
},
pipelines: {
renderCell: (_pipeline: any[], stream) => <PipelinesCell stream={stream} />,
staticWidth: 130,
staticWidth: 100,
},
outputs: {
renderCell: (_outputs: Output[], stream) => <OutputsCell stream={stream} />,
staticWidth: 130,
staticWidth: 100,
},
archiving: {
renderCell: (_archiving:boolean, stream) => <ArchivingsCell stream={stream} indexSets={indexSets} />,
staticWidth: 130,
staticWidth: 100,
},
...(streamDataWarehouseColumnRenderer || {}),
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ const StreamsOverview = ({ indexSets }: Props) => {
tableLayout={DEFAULT_LAYOUT}
fetchEntities={fetchStreams}
keyFn={keyFn}
actionsCellWidth={180}
expandedSectionsRenderer={expandedSections}
bulkSelection={{ actions: bulkActions }}
entityAttributesAreCamelCase={false}
Expand Down

0 comments on commit 4f906f6

Please sign in to comment.