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.
1 parent ea9d4cb commit 78c735dCopy full SHA for 78c735d
packages/docs/build/templates/props.js
@@ -11,7 +11,7 @@ const renderTags = (tags) => {
11
}
12
return Object.entries(tags)
13
.map(([tag, values]) => {
14
- return tag !== 'since' && values.map(v => `<br/>\`@${tag}\` ${isTag(v) ? v.content : v.description}`).join('');
+ return tag !== 'since' ? values.map(v => `<br/>\`@${tag}\` ${isTag(v) ? v.content : v.description}`).join(''): '';
15
})
16
.join('');
17
};
0 commit comments