fix highQuality
This commit is contained in:
parent
c0f7beb8cb
commit
3d818ed648
@ -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 (
|
||||
|
Loading…
Reference in New Issue
Block a user