Skip to content

Commit

Permalink
Display aliases on Explore page
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenClontz committed Oct 10, 2024
1 parent a46006d commit 0e96d12
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/viewer/src/components/Traits/Table.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@
<Link.Space {space}>S{space.id}</Link.Space>
</td>
<td>
<Link.Space {space} />
<div><Link.Space {space} /></div>
{#if space.aliases.length > 0}
<div><small class="text-muted">{space.aliases.join(", ")}</small></div>
{/if}
</td>
{#each properties as property (property.id)}
<td>
Expand Down

0 comments on commit 0e96d12

Please sign in to comment.