Skip to content

Commit

Permalink
chore: Move description after url
Browse files Browse the repository at this point in the history
  • Loading branch information
SilviaZeta committed Jul 22, 2022
1 parent a430d78 commit 24311d1
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/components/plugins/AddPluginDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -229,18 +229,6 @@ export function AddPluginDialog({
variant="outlined"
/>
<Divider sx={{ ...divider }} />
<Notepad
placeholder="Plug-in Description (Optional)"
value={newPlugin.description}
onChange={(event) => {
setNewPlugin((p) => ({
...p,
description: event.target.value,
}));
}}
rows={6}
/>
<Divider sx={{ ...divider }} />
<TextField
sx={{ ...marginTop }}
variant="outlined"
Expand All @@ -255,6 +243,18 @@ export function AddPluginDialog({
}}
/>
<Divider sx={{ ...divider }} />
<Notepad
placeholder="Plug-in Description (Optional)"
value={newPlugin.description}
onChange={(event) => {
setNewPlugin((p) => ({
...p,
description: event.target.value,
}));
}}
rows={6}
/>
<Divider sx={{ ...divider }} />
<ProductsRadioForm newPlugin={newPlugin} setNewPlugin={setNewPlugin} />
<Divider sx={{ ...divider }} />
<ProjectsAutocomplete
Expand Down

0 comments on commit 24311d1

Please sign in to comment.