-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1b1233f
commit 1842b6b
Showing
5 changed files
with
42 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<script lang="ts"> | ||
import type { Property } from '@/models' | ||
import { Link } from '../Shared' | ||
import Typeset from '../Shared/Typeset.svelte' | ||
export let property: Property | ||
</script> | ||
|
||
<div><Link.Property {property} /></div> | ||
{#if property.aliases.length > 0} | ||
<div> | ||
<small class="text-muted"> | ||
{#each property.aliases as alias, i} | ||
{#if i > 0}, {/if} | ||
<Typeset body={alias} /> | ||
{/each} | ||
</small> | ||
</div> | ||
{/if} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<script lang="ts"> | ||
import type { Space } from '@/models' | ||
import { Link } from '../Shared' | ||
import Typeset from '../Shared/Typeset.svelte' | ||
export let space: Space | ||
</script> | ||
|
||
<div><Link.Space {space} /></div> | ||
{#if space.aliases.length > 0} | ||
<div> | ||
<small class="text-muted"> | ||
{#each space.aliases as alias, i} | ||
{#if i > 0}, {/if} | ||
<Typeset body={alias} /> | ||
{/each} | ||
</small> | ||
</div> | ||
{/if} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters