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 62a388c commit eaaaac7Copy full SHA for eaaaac7
src/generators/legacy-json/utils/parseList.mjs
@@ -109,10 +109,7 @@ export function parseList(section, nodes) {
109
case 'property':
110
// For properties, update type and other details if values exist
111
if (values.length) {
112
- const { type, ...rest } = values[0];
113
- section.type = type;
114
- leftHandAssign(section, rest);
115
- section.textRaw = `\`${section.name}\` ${section.textRaw}`;
+ leftHandAssign(section, values[0]);
116
}
117
break;
118
0 commit comments