mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-03 04:29:28 +01:00
Fix readonly property to match parent
This commit is contained in:
parent
8f784cd7b3
commit
b393375823
@ -415,10 +415,12 @@ export const Et2InputWidget = <T extends Constructor>(superClass: T) =>
|
|||||||
{
|
{
|
||||||
return {
|
return {
|
||||||
...super.properties,
|
...super.properties,
|
||||||
readonly: {
|
// readOnly is what the property is in Lion, readonly is the attribute
|
||||||
|
readOnly: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
reflect: true
|
attribute: 'readonly',
|
||||||
}
|
reflect: true,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user