Skip to content

Commit

Permalink
fix: correct typo
Browse files Browse the repository at this point in the history
  • Loading branch information
duttarnab committed Mar 17, 2022
1 parent 1cac02f commit 18ab757
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ function CustomScriptForm({ item, scripts, handleSubmit }) {
}}
>
<option value="">{t('options.choose')}...</option>
{items.map((ele, item) => (
{items.map((ele, index) => (
<option key={index} value={ele.name}>{ele.name}</option>
))}
</CustomInput>
Expand Down

0 comments on commit 18ab757

Please sign in to comment.