ywana-core8 0.1.39 → 0.1.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +106 -106
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +106 -106
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +106 -106
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain/ContentEditor.js +1 -1
- package/src/widgets/login/dialogs.js +1 -1
package/package.json
CHANGED
@@ -201,7 +201,7 @@ export const FieldEditor = ({ field, onChange, content, outlined = false, onRelo
|
|
201
201
|
case TYPES.STRING:
|
202
202
|
return <StringEditor outlined={outlined} field={field} value={value1} onChange={change} content={content} />
|
203
203
|
case TYPES.BOOLEAN:
|
204
|
-
return <CheckBox outlined id={id} label={label} value={value1} onChange={change} readOnly={editable} />
|
204
|
+
return <CheckBox outlined id={id} label={label} value={value1} onChange={change} readOnly={!editable} />
|
205
205
|
case TYPES.NUMBER:
|
206
206
|
return <NumberEditor outlined={outlined} field={field} value={value1} onChange={change} />
|
207
207
|
case TYPES.ARRAY:
|