Fix readonly property to match parent

This commit is contained in:
nathan 2021-08-23 15:26:00 -06:00
parent 8f784cd7b3
commit b393375823

View File

@ -415,10 +415,12 @@ export const Et2InputWidget = <T extends Constructor>(superClass: T) =>
{
return {
...super.properties,
readonly: {
// readOnly is what the property is in Lion, readonly is the attribute
readOnly: {
type: Boolean,
reflect: true
}
attribute: 'readonly',
reflect: true,
},
};
}