diff --git a/src/app/components/Toast.svelte b/src/app/components/Toast.svelte index 7674bc01..7e8bd399 100644 --- a/src/app/components/Toast.svelte +++ b/src/app/components/Toast.svelte @@ -1,28 +1,98 @@ {#if $toast} {@const theme = $toast.theme || "info"} -
+ +
{#if $toast.message}
{@html renderAsHtml(parse({content: $toast.message}))}
{#if $toast.action}
@@ -35,9 +105,6 @@