We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa4626b commit 0335590Copy full SHA for 0335590
arduino-ide-extension/src/browser/widgets/component-list/list-item-renderer.tsx
@@ -213,7 +213,7 @@ export class ListItemRenderer<T extends ArduinoComponent> {
213
let content = `\n\n${summary}`;
214
// do not repeat the same info if paragraph and sentence are the same
215
// example: https://github.com/arduino-libraries/ArduinoCloudThing/blob/8cbcee804e99fed614366c1b87143b1f1634c45f/library.properties#L5-L6
216
- if (description !== summary) {
+ if (description && description !== summary) {
217
content += `\n_____\n\n${description}`;
218
}
219
return `${title}\n\n____${content}\n\n____\n${TopicLabel}: \`${item.category}\``;
0 commit comments