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'
|
import state from '../state.js'
|
||||||
|
|
||||||
const FieldComponent = ({ field }) => {
|
const FieldComponent = observer(({ field }) => {
|
||||||
switch (field.type) {
|
switch (field.type) {
|
||||||
case 'range':
|
case 'range':
|
||||||
let { name, id } = field
|
let { name, id } = field
|
||||||
@ -33,7 +33,7 @@ const FieldComponent = ({ field }) => {
|
|||||||
default:
|
default:
|
||||||
return <span>Error: Field type {field.type} not known.</span>
|
return <span>Error: Field type {field.type} not known.</span>
|
||||||
}
|
}
|
||||||
}
|
})
|
||||||
|
|
||||||
const Options = ({ fields }) => {
|
const Options = ({ fields }) => {
|
||||||
return (
|
return (
|
||||||
|
Loading…
Reference in New Issue
Block a user