diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2020-08-10 10:56:25 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2020-08-10 10:57:38 +0900 |
commit | d1d677088832650887df7d78f09303180ad51bf8 (patch) | |
tree | 94398157b44b619bcecf9b4c65db46264882c634 /src | |
parent | 9b3bdc1b3ebd44dfcf5233e7d329a088f6c3bac6 (diff) |
Remove discarded property
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} |