frontend/.pnpm-store/v3/files/34/4428e4fec104f8514405a2121ec861e20c58c921047241c5710b2c6967297a5e946f1aa8f26d2393ef57940623c8673d711556f3e92f92d8999c8cbc607f22

17 lines
275 B
Plaintext

<script>
export let getSelectionLabel = undefined;
export let item = undefined;
</script>
<style>
.selection {
text-overflow: ellipsis;
overflow-x: hidden;
white-space: nowrap;
}
</style>
<div class="selection">
{@html getSelectionLabel(item)}
</div>