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 22ccb61 commit 9894078Copy full SHA for 9894078
src/index.tsx
@@ -216,7 +216,7 @@ export function renderTags(tags: Array<TagDescription>) {
216
.map(tag => {
217
const keys = Object.keys(tag.props);
218
// @ts-expect-error
219
- const props = keys.map(k => (k === "children" ? "" : ` ${k}="${escape(tag.props[k], true)}`)).join("");
+ const props = keys.map(k => (k === "children" ? "" : ` ${k}="${escape(tag.props[k], true)}"`)).join("");
220
if (tag.props.children) {
221
// Tags might contain multiple text children:
222
// <Title>example - {myCompany}</Title>
0 commit comments