fix highQuality

This commit is contained in:
Alfred Melch 2019-07-22 08:44:24 +02:00
parent c0f7beb8cb
commit 3d818ed648

View File

@ -6,7 +6,7 @@ import { RangeInput } from './RangeInput.js'
import state from '../state.js'
const FieldComponent = ({ field }) => {
const FieldComponent = observer(({ field }) => {
switch (field.type) {
case 'range':
let { name, id } = field
@ -33,7 +33,7 @@ const FieldComponent = ({ field }) => {
default:
return <span>Error: Field type {field.type} not known.</span>
}
}
})
const Options = ({ fields }) => {
return (