fix: fix rendering crash when the description is empty

This commit is contained in:
Spectralitree 2021-12-11 19:10:22 +01:00
parent 8d8d7e48ed
commit c07147ec65

View File

@ -6,7 +6,12 @@
export let user; export let user;
export let editMode: boolean; export let editMode: boolean;
$: htmlDescription = toHTML(user.description, {embed: true}); let htmlDescription: string;
if (user.description) {
htmlDescription = toHTML(user.description, {embed: true});
} else {
htmlDescription = "(no description)";
}
let created = moment(user.created).format("MMM D, YYYY"); let created = moment(user.created).format("MMM D, YYYY");