jbampton commented on a change in pull request #1723:
URL: https://github.com/apache/apisix-dashboard/pull/1723#discussion_r610278786
##########
File path: web/src/pages/PluginTemplate/Create.tsx
##########
@@ -108,7 +108,12 @@ const Page: React.FC = (props) => {
{step === 1 && <Step1 form={form1} />}
{step === 2 && (
- <PluginPage initialData={plugins} onChange={setPlugins}
schemaType="route" />
+ <PluginPage
Review comment:
I have never done `.tsx` before, but when I try to do HTML attributes I
like to order them alphabetically.
Suggested change:
```
<PluginPage
initialData={plugins}
onChange={setPlugins}
referPage="route"
schemaType="route"
/>
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]