Files
lucent-laravel/front/js/svelte/records/PreviewCardSmall.svelte
T
2026-05-06 21:43:13 +03:00

29 lines
525 B
Svelte

<script>
import { getContext } from "svelte";
const channel = getContext("channel");
export let record;
$: title = record.data.name;
</script>
{#if record?.data}
<a href="{channel.lucentUrl}/records/{record.id}" {title} class="reference">
{title}
</a>
{/if}
<style>
a {
max-width: 200px;
overflow: hidden;
text-overflow: ellipsis;
font-size: 13px;
color: #333;
}
a:hover {
opacity: 0.5;
/* color: #fff; */
}
</style>