Skip to content

Commit

Permalink
fix: [tempfix] space selector (#2096)
Browse files Browse the repository at this point in the history
  • Loading branch information
rkapoor10 authored and Harness committed Jun 12, 2024
1 parent cdd7478 commit 8e8bb98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/components/SpaceSelector/SpaceSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ export const SpaceSelector: React.FC<SpaceSelectorProps> = ({ onSelect }) => {
/>
<Layout.Vertical flex className={css.name}>
<Text className={css.repoName} lineClamp={2}>
<Keywords value={searchTerm}>{record.space.uid}</Keywords>
<Keywords value={searchTerm}>{(record.space as any).identifier}</Keywords>
</Text>
{record.space.description && (
<Text className={css.desc} lineClamp={1}>
Expand Down

0 comments on commit 8e8bb98

Please sign in to comment.