We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
item.description
1 parent 70d973d commit 9a4fedaCopy full SHA for 9a4feda
src/project/types/website/listing/website-listing-template.ts
@@ -127,7 +127,7 @@ export function templateMarkdownHandler(
127
}
128
129
130
- if (item.description !== undefined && !isPlaceHolder(item.description)) {
+ if (typeof item.description === "string" && !isPlaceHolder(item.description)) {
131
const maxDescLength = listing[kMaxDescLength] as number ||
132
-1;
133
if (maxDescLength > 0) {
0 commit comments