Skip to content

Commit

Permalink
--wip-- [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
tsullivan committed Oct 29, 2024
1 parent e477ac2 commit a9a12a0
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ export class SpacesGridPage extends Component<Props, State> {
return <SpaceName />;
},
'data-test-subj': 'spacesListTableRowNameCell',
width: '15%',
width: '20%',
},
{
field: 'description',
Expand All @@ -317,7 +317,7 @@ export class SpacesGridPage extends Component<Props, State> {
}),
sortable: true,
truncateText: true,
width: '45%',
width: '40%',
},
];

Expand All @@ -331,6 +331,7 @@ export class SpacesGridPage extends Component<Props, State> {
render: (solution: Space['solution'], record: Space) => (
<SpaceSolutionBadge solution={solution} data-test-subj={`${record.id}-solution`} />
),
width: '10%',
});
}

Expand Down

0 comments on commit a9a12a0

Please sign in to comment.