Skip to content

Commit

Permalink
[Spaces] Remove “identifier” column from Spaces listing
Browse files Browse the repository at this point in the history
  • Loading branch information
tsullivan committed Nov 21, 2024
1 parent 5d4282e commit a5b6903
Showing 1 changed file with 1 addition and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import { reactRouterNavigate } from '@kbn/kibana-react-plugin/public';

import { addSpaceIdToPath, type Space } from '../../../common';
import { isReservedSpace } from '../../../common';
import { DEFAULT_SPACE_ID, ENTER_SPACE_PATH } from '../../../common/constants';
import { ENTER_SPACE_PATH } from '../../../common/constants';
import { getSpacesFeatureDescription } from '../../constants';
import { getSpaceAvatarComponent } from '../../space_avatar';
import { SpaceSolutionBadge } from '../../space_solution_badge';
Expand Down Expand Up @@ -321,20 +321,6 @@ export class SpacesGridPage extends Component<Props, State> {
},
];

config.push({
field: 'id',
name: i18n.translate('xpack.spaces.management.spacesGridPage.identifierColumnName', {
defaultMessage: 'Identifier',
}),
sortable: true,
render(id: string) {
if (id === DEFAULT_SPACE_ID) {
return '';
}
return id;
},
});

if (this.props.allowSolutionVisibility) {
config.push({
field: 'solution',
Expand Down

0 comments on commit a5b6903

Please sign in to comment.