Skip to content

Commit

Permalink
hide test and publish
Browse files Browse the repository at this point in the history
  • Loading branch information
saiprakash-v committed Dec 30, 2022
1 parent 26829a5 commit c28c813
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ function ManualSchemaCreationComponent() {
setCreateAttribute(false);
}


const createNewFieldInSchema = () => {
setViewSchemaDetails(false);
setCreateAttribute(true);
Expand Down Expand Up @@ -65,15 +66,15 @@ function ManualSchemaCreationComponent() {
<div>
{!createAttribute && <BreadcrumbComponent showBreadCrumb={true} />}
{
!initialDetailsCreated &&
!initialDetailsCreated && !schemaPreview &&
<SchemaDetails addInitialSchemaDetails={updateInitialSchemaDetails}></SchemaDetails>
}
{
initialDetailsCreated && createAttribute &&
initialDetailsCreated && createAttribute && !schemaPreview &&
<AddSchemaFieldComponent addNewAttributeToSchema={addNewAttributeToSchema}></AddSchemaFieldComponent>
}
{
!createAttribute && viewSchemaDetails &&
!createAttribute && viewSchemaDetails && !schemaPreview &&
<SchemaAttributes
schemaDetails={schemaDetails}
attributes={schemaDetails["properties"]}
Expand Down

0 comments on commit c28c813

Please sign in to comment.