fix(scaffolder): adjust schema

This commit is contained in:
Ivan Shmidt
2020-06-29 23:14:18 +02:00
parent 5ad9f65415
commit a6f9495f62
@@ -118,17 +118,17 @@ export const CreatePage = () => {
label: 'Choose owner and repo',
schema: {
$schema: 'http://json-schema.org/draft-07/schema#',
required: ['repo', 'owner'],
required: ['storePath', 'owner'],
properties: {
owner: {
type: 'string',
title: 'Owner',
description: 'Who is going to own this component',
},
repo: {
storePath: {
type: 'string',
title: 'GitHub repository',
description: 'Repo where to upload created component',
title: 'Store path',
description: 'GitHub store path in org/repo format',
},
},
},