Tweaks to question box

This commit is contained in:
Pieter Vander Vennet 2023-03-31 04:04:11 +02:00
parent cce14564dc
commit 64532d1faf
7 changed files with 97 additions and 18 deletions

View file

@ -6,7 +6,7 @@
export let src: string;
let htmlElem: HTMLElement;
$: {
if(htmlElem !== undefined){
if(htmlElem){
htmlElem.innerHTML = src
}
}