fix: fix rendering crash when the description is empty
This commit is contained in:
parent
8d8d7e48ed
commit
c07147ec65
@ -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");
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user