diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2020-08-10 11:28:47 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-10 11:28:47 +0900 |
commit | ef9ba2269e278f71531e726f352b3e020b3dc8be (patch) | |
tree | 8360a7e64faa196771a467ffeb318e97bfa9a212 /src | |
parent | 04d6c922901c0352bda5221b4ac3d3a966754fcf (diff) | |
parent | 326b888d59264d4968eda8bc9984bff07e7fb6ee (diff) |
Merge pull request #784 from ueokande/move-to-yarn
Migrate npm to yarn
Diffstat (limited to 'src')
-rw-r--r-- | src/settings/components/ui/Input.tsx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/settings/components/ui/Input.tsx b/src/settings/components/ui/Input.tsx index 6819ddb..0e24277 100644 --- a/src/settings/components/ui/Input.tsx +++ b/src/settings/components/ui/Input.tsx @@ -20,7 +20,6 @@ class Input extends React.Component<Props> { <div className="settings-ui-input"> <label htmlFor={props.id}>{props.label}</label> <input - type="text" className={inputClassName} onChange={this.bindOnChange.bind(this)} {...pp} @@ -37,7 +36,6 @@ class Input extends React.Component<Props> { <div className="settings-ui-input"> <label> <input - type="radio" className={inputClassName} onChange={this.bindOnChange.bind(this)} {...pp} |