mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Handle possibly undefined value
This commit is contained in:
parent
fc4837b51c
commit
fada958e72
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ exports.handlers = {
|
|||
// Append an Available In: table at the end of the namespace description.
|
||||
if (rows.length > 0) {
|
||||
var table = "<br><br><table><tr><th>Available in:</th><td>" + rows.join("</td><td>") + "</td></tr></table>";
|
||||
e.doclet.description = e.doclet.description + table;
|
||||
e.doclet.description = (e.doclet.description ? e.doclet.description : "") + table;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue