We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cd0074 commit ceaecd2Copy full SHA for ceaecd2
src/app/components/Editor.tsx
@@ -65,6 +65,7 @@ const checkWarnings = async (values: PublicCode) => {
65
};
66
67
const resolver: Resolver<PublicCode | PublicCodeWithDeprecatedFields> = async (values) => {
68
+ console.log(values)
69
const res = await validatorFn(values as PublicCode);
70
71
if (res.errors.length === 0)
@@ -373,6 +374,18 @@ export default function Editor() {
373
374
required
375
/>
376
</Col>
377
+ <Col>
378
+ <EditorDescriptionInput<"documentation">
379
+ fieldName="documentation"
380
+ lang={lang}
381
+ />
382
+ </Col>
383
384
+ <EditorDescriptionInput<"apiDocumentation">
385
+ fieldName="apiDocumentation"
386
387
388
389
<Col>
390
<EditorFeatures lang={lang} />
391
0 commit comments