Skip to content
Snippets Groups Projects
Commit aa4dcf1d authored by David Trattnig's avatar David Trattnig
Browse files

feat: ability to add link

parent adacdc59
No related branches found
No related tags found
No related merge requests found
<script lang="ts">
export let value: string = ''
export let url: string = ''
export let renderhtml: boolean = false
export let renderLinks: boolean = true
......@@ -24,7 +25,13 @@
</style>
<template>
{#if renderhtml}
{#if url}
<a href={url}>
{#if renderhtml}
{@html displayString(value)}
{:else}{displayString(value)}{/if}
</a>
{:else if renderhtml}
{@html displayString(value)}
{:else}{displayString(value)}{/if}
</template>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment