remove default form settings

This commit is contained in:
Shin'ya Ueoka 2017-11-28 20:45:22 +09:00
parent 6821372fc7
commit e1060f9bb2
5 changed files with 27 additions and 78 deletions

View file

@ -58,6 +58,8 @@ const KeyMapFields = [
]
];
const AllowdOps = [].concat(...KeyMapFields.map(group => group.map(e => e[0])));
class KeymapsForm extends Component {
render() {
@ -99,4 +101,6 @@ class KeymapsForm extends Component {
}
}
KeymapsForm.AllowdOps = AllowdOps;
export default KeymapsForm;