mirror of
https://github.com/EnixCoda/Gitako.git
synced 2026-03-11 08:54:44 +00:00
fix: set key for setting options
This commit is contained in:
parent
1d16f3e307
commit
848de531eb
1 changed files with 2 additions and 2 deletions
|
|
@ -247,8 +247,8 @@ export default class SettingsBar extends React.PureComponent {
|
|||
<div className={'gitako-settings-bar-content-section others'}>
|
||||
<h4>More Options</h4>
|
||||
{moreOptions.map(option => (
|
||||
<React.Fragment>
|
||||
<label key={option.key} htmlFor={option.key}>
|
||||
<React.Fragment key={option.key}>
|
||||
<label htmlFor={option.key}>
|
||||
<input
|
||||
id={option.key}
|
||||
name={option.key}
|
||||
|
|
|
|||
Loading…
Reference in a new issue