-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added basic structure for extensions #1402
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1402 +/- ##
==========================================
+ Coverage 76.01% 85.89% +9.87%
==========================================
Files 180 193 +13
Lines 5503 6266 +763
Branches 1139 1485 +346
==========================================
+ Hits 4183 5382 +1199
+ Misses 931 776 -155
+ Partials 389 108 -281
Continue to review full report at Codecov.
|
Test summaryRun details
View run in Cypress Dashboard ➡️ Flakiness
This comment has been generated by cypress-bot as a result of this project's GitHub integration settings. You can manage this integration in this project's settings in the Cypress Dashboard |
return ( | ||
<Dialog | ||
open={!!openDialog} | ||
classes={{ | ||
paper: styles.Dialogbox, | ||
}} | ||
> | ||
<DialogContent classes={{ root: styles.DialogContent }}> | ||
<FormLayout | ||
{...queries} | ||
match={match} | ||
states={states} | ||
setStates={setStates} | ||
validationSchema={FormSchema} | ||
listItemName="extension" | ||
dialogMessage={dialogMessage} | ||
formFields={formFields} | ||
setPayload={setPayload} | ||
redirectionLink="organizations" | ||
listItem="Extension" | ||
icon={flowIcon} | ||
title={title} | ||
type="Extension" | ||
languageSupport={false} | ||
/> | ||
</DialogContent> | ||
</Dialog> | ||
); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
return ( | |
<Dialog | |
open={!!openDialog} | |
classes={{ | |
paper: styles.Dialogbox, | |
}} | |
> | |
<DialogContent classes={{ root: styles.DialogContent }}> | |
<FormLayout | |
{...queries} | |
match={match} | |
states={states} | |
setStates={setStates} | |
validationSchema={FormSchema} | |
listItemName="extension" | |
dialogMessage={dialogMessage} | |
formFields={formFields} | |
setPayload={setPayload} | |
redirectionLink="organizations" | |
listItem="Extension" | |
icon={flowIcon} | |
title={title} | |
type="Extension" | |
languageSupport={false} | |
/> | |
</DialogContent> | |
</Dialog> | |
); | |
return ( | |
<> | |
<OrganizationList /> | |
<Dialog | |
open={!!openDialog} | |
classes={{ | |
paper: styles.Dialogbox, | |
}} | |
> | |
<DialogContent classes={{ root: styles.DialogContent }}> | |
<FormLayout | |
{...queries} | |
match={match} | |
states={states} | |
setStates={setStates} | |
validationSchema={FormSchema} | |
listItemName="extension" | |
dialogMessage={dialogMessage} | |
formFields={formFields} | |
setPayload={setPayload} | |
redirectionLink="organizations" | |
listItem="Extension" | |
icon={flowIcon} | |
title={title} | |
type="Extension" | |
languageSupport={false} | |
/> | |
</DialogContent> | |
</Dialog> | |
</> | |
); |
Summary
Test Plan