Update toast.blade.php to use x-html instead of x-text
This commit is contained in:
@@ -404,11 +404,11 @@ window.customToastHTML = `
|
|||||||
fill="currentColor"></path>
|
fill="currentColor"></path>
|
||||||
</svg>
|
</svg>
|
||||||
<p class="font-medium leading-none text-neutral-200"
|
<p class="font-medium leading-none text-neutral-200"
|
||||||
x-text="toast.message">
|
x-html="toast.message">
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<p x-show="toast.description" :class="{ 'pl-5': toast.type!='default' }"
|
<p x-show="toast.description" :class="{ 'pl-5': toast.type!='default' }"
|
||||||
class="mt-1.5 text-xs leading-none opacity-70" x-text="toast.description"></p>
|
class="mt-1.5 text-xs leading-none opacity-70" x-html="toast.description"></p>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<template x-if="toast.html">
|
<template x-if="toast.html">
|
||||||
|
Reference in New Issue
Block a user