Skip to content

Commit

Permalink
fix #363 (#389)
Browse files Browse the repository at this point in the history
Signed-off-by: ryjiang <[email protected]>
  • Loading branch information
shanghaikid authored Jan 30, 2024
1 parent 02ce1ab commit bdae269
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion client/src/pages/segments/Segments.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ const Segments = () => {

const psegments = (await Segement.getPSegments(collectionName)) || {};
const qsegments = (await Segement.getQSegments(collectionName)) || {};

const combinedArray = psegments.infos.map(p => {
const q: any =
qsegments.infos.find(q => q.segmentID === p.segmentID)! || {};
Expand Down Expand Up @@ -132,6 +131,9 @@ const Segments = () => {
align: 'left',
disablePadding: false,
label: collectionTrans('q_nodeIds'),
formatter(data, cellData, cellIndex) {
return cellData.join(',');
},
},
{
id: 'q_state',
Expand Down

0 comments on commit bdae269

Please sign in to comment.